-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathauthenticator_assertion_response_spec.rb
More file actions
622 lines (471 loc) · 19.8 KB
/
authenticator_assertion_response_spec.rb
File metadata and controls
622 lines (471 loc) · 19.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
# frozen_string_literal: true
require "spec_helper"
require "support/seeds"
require "webauthn/attestation_statement/fido_u2f/public_key"
require "webauthn/authenticator_assertion_response"
require "webauthn/u2f_migrator"
RSpec.describe WebAuthn::AuthenticatorAssertionResponse do
let(:client) { WebAuthn::FakeClient.new(actual_origin, encoding: false) }
let!(:credential) { create_credential(client: client) }
let(:credential_public_key) { credential[1] }
let(:origin) { fake_origin }
let(:actual_origin) { origin }
let(:original_challenge) { fake_challenge }
let(:assertion) { client.get(challenge: original_challenge) }
let(:authenticator_data) { assertion["response"]["authenticatorData"] }
let(:assertion_response) do
WebAuthn::AuthenticatorAssertionResponse.new(
client_data_json: assertion["response"]["clientDataJSON"],
authenticator_data: authenticator_data,
signature: assertion["response"]["signature"]
)
end
let(:challenge) { original_challenge }
let(:public_key) { credential_public_key }
let(:sign_count) { 0 }
let(:user_presence) { nil }
let(:user_verification) { nil }
let(:rp_id) { nil }
before do
WebAuthn.configuration.allowed_origins = [origin]
end
shared_examples "a valid assertion response" do
it "verifies" do
expect(
assertion_response.verify(
challenge,
public_key: public_key,
sign_count: sign_count,
user_presence: user_presence,
user_verification: user_verification,
rp_id: rp_id
)
).to be_truthy
end
it "is valid" do
expect(
assertion_response.valid?(
challenge,
public_key: public_key,
sign_count: sign_count,
user_presence: user_presence,
user_verification: user_verification,
rp_id: rp_id
)
).to be_truthy
end
end
shared_examples "an invalid assertion response that raises" do |expected_error|
it "doesn't verify" do
expect {
assertion_response.verify(
challenge,
public_key: public_key,
sign_count: sign_count,
user_presence: user_presence,
user_verification: user_verification,
rp_id: rp_id
)
}.to raise_error(expected_error)
end
it "is invalid" do
expect(
assertion_response.valid?(
challenge,
public_key: public_key,
sign_count: sign_count,
user_presence: user_presence,
user_verification: user_verification,
rp_id: rp_id
)
).to be_falsy
end
end
context "when everything's in place" do
it_behaves_like "a valid assertion response"
end
# Gem version v1.11.0 and lower, used to behave so that Credential#public_key
# returned an EC P-256 uncompressed point.
#
# Because of https://github.com/cedarcode/webauthn-ruby/issues/137 this was changed
# and Credential#public_key started returning the unchanged COSE_Key formatted
# credentialPublicKey (as in https://www.w3.org/TR/webauthn/#credentialpublickey).
#
# Given that the credential public key is expected to be stored long-term by the gem
# user and later be passed as the public_key argument in the
# AuthenticatorAssertionResponse.verify call, we then need to support the two formats.
context "when everything's in place with the old public key format" do
let(:public_key) {
WebAuthn::AttestationStatement::FidoU2f::PublicKey
.new(credential_public_key)
.to_uncompressed_point
}
it_behaves_like "a valid assertion response"
end
context "if signature was signed with a different key" do
let(:public_key) do
_different_id, different_public_key = create_credential(client: client)
different_public_key
end
it_behaves_like "an invalid assertion response that raises", WebAuthn::SignatureVerificationError
end
describe "type validation" do
context "if type is create instead of get" do
before do
allow(client).to receive(:type_for).and_return("webauthn.create")
end
it_behaves_like "an invalid assertion response that raises", WebAuthn::TypeVerificationError
end
end
describe "user present validation" do
context "when user presence flag is off" do
let(:assertion) { client.get(challenge: original_challenge, user_present: false, user_verified: false) }
context "when silent_authentication is not set" do
context 'when user presence is not set' do
it_behaves_like "an invalid assertion response that raises", WebAuthn::UserPresenceVerificationError
end
context 'when user presence is not required' do
let(:user_presence) { false }
it_behaves_like "a valid assertion response"
end
context 'when user presence is required' do
let(:user_presence) { true }
it_behaves_like "an invalid assertion response that raises", WebAuthn::UserPresenceVerificationError
end
end
context "when silent_authentication is disabled" do
around do |ex|
old_value = WebAuthn.configuration.silent_authentication
WebAuthn.configuration.silent_authentication = false
ex.run
WebAuthn.configuration.silent_authentication = old_value
end
context 'when user presence is not set' do
it_behaves_like "an invalid assertion response that raises", WebAuthn::UserPresenceVerificationError
end
context 'when user presence is not required' do
let(:user_presence) { false }
it_behaves_like "a valid assertion response"
end
context 'when user presence is required' do
let(:user_presence) { true }
it_behaves_like "an invalid assertion response that raises", WebAuthn::UserPresenceVerificationError
end
end
context "when silent_authentication is enabled" do
around do |ex|
old_value = WebAuthn.configuration.silent_authentication
WebAuthn.configuration.silent_authentication = true
ex.run
WebAuthn.configuration.silent_authentication = old_value
end
context 'when user presence is not set' do
it_behaves_like "a valid assertion response"
end
context 'when user presence is not required' do
let(:user_presence) { false }
it_behaves_like "a valid assertion response"
end
context 'when user presence is required' do
let(:user_presence) { true }
it_behaves_like "an invalid assertion response that raises", WebAuthn::UserPresenceVerificationError
end
end
end
end
describe "user verified validation" do
context "if user flags are off" do
let(:assertion) { client.get(challenge: original_challenge, user_present: true, user_verified: false) }
let(:user_verification) { true }
it_behaves_like "an invalid assertion response that raises", WebAuthn::UserVerifiedVerificationError
end
end
describe "challenge validation" do
context "if challenge doesn't match" do
let(:challenge) { fake_challenge }
it_behaves_like "an invalid assertion response that raises", WebAuthn::ChallengeVerificationError
end
end
describe "origin validation" do
context "if origin doesn't match" do
let(:actual_origin) { "http://different-origin" }
it_behaves_like "an invalid assertion response that raises", WebAuthn::OriginVerificationError
end
end
describe "tokenBinding validation" do
let(:client) { WebAuthn::FakeClient.new(actual_origin, token_binding: token_binding, encoding: false) }
context "it has stuff" do
let(:token_binding) { { status: "supported" } }
it_behaves_like "a valid assertion response"
end
context "has an invalid format" do
let(:token_binding) { "invalid token binding format" }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TokenBindingVerificationError
end
end
describe "rp_id validation" do
before do
WebAuthn.configuration.rp_id = "different-rp_id"
end
context "if rp_id_hash doesn't match" do
it_behaves_like "an invalid assertion response that raises", WebAuthn::RpIdVerificationError
end
context "when correct rp_id is explicitly given" do
let(:rp_id) { URI.parse(origin).host }
it_behaves_like "a valid assertion response"
end
end
describe "sign_count validation" do
context "if authenticator does not support counter" do
let(:assertion) { client.get(challenge: original_challenge, sign_count: 0) }
it_behaves_like "a valid assertion response"
end
context "when the authenticator supports counter" do
context "and it's greater than the stored counter" do
let(:assertion) { client.get(challenge: original_challenge, sign_count: 6) }
let(:sign_count) { 5 }
it_behaves_like "a valid assertion response"
end
context "and it's equal to the stored counter" do
let(:assertion) { client.get(challenge: original_challenge, sign_count: 5) }
let(:sign_count) { 5 }
it_behaves_like "an invalid assertion response that raises", WebAuthn::SignCountVerificationError
end
context "and it's less than the stored counter" do
let(:assertion) { client.get(challenge: original_challenge, sign_count: 4) }
let(:sign_count) { 5 }
it_behaves_like "an invalid assertion response that raises", WebAuthn::SignCountVerificationError
end
context "when the RP opts out of verifying the signature counter" do
let(:assertion) { client.get(challenge: original_challenge, sign_count: false) }
let(:sign_count) { 5 }
it_behaves_like "an invalid assertion response that raises", WebAuthn::SignCountVerificationError
end
end
end
describe "top_origin validation" do
let(:client) { WebAuthn::FakeClient.new(origin, encoding: false, cross_origin: cross_origin, top_origin: client_top_origin) }
let(:top_origin) { fake_top_origin }
before do
WebAuthn.configuration.allowed_top_origins = allowed_top_origins
WebAuthn.configuration.verify_cross_origin = verify_cross_origin
end
context "when verify_cross_origin is false" do
let(:verify_cross_origin) { false }
context "when allowed_top_origins is not set" do
let(:allowed_top_origins) { nil }
context "when cross_origin is true" do
let(:cross_origin) { true }
context "when top_origin is set" do
let(:client_top_origin) { top_origin }
it_behaves_like "a valid assertion response"
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "a valid assertion response"
end
end
context "when cross_origin is false" do
let(:cross_origin) { false }
context "when top_origin is set" do
let(:client_top_origin) { top_origin }
it_behaves_like "a valid assertion response"
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "a valid assertion response"
end
end
context "when cross_origin is not set" do
let(:cross_origin) { nil }
context "when top_origin is set" do
let(:client_top_origin) { top_origin }
it_behaves_like "a valid assertion response"
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "a valid assertion response"
end
end
end
context "when allowed_top_origins is set" do
let(:allowed_top_origins) { [top_origin] }
context "when cross_origin is true" do
let(:cross_origin) { true }
context "when top_origin is set" do
context "when top_origin matches client top_origin" do
let(:client_top_origin) { top_origin }
it_behaves_like "a valid assertion response"
end
context "when top_origin does not match client top_origin" do
let(:client_top_origin) { "https://malicious.example.com" }
it_behaves_like "a valid assertion response"
end
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "a valid assertion response"
end
end
context "when cross_origin is false" do
let(:cross_origin) { false }
context "when top_origin is set" do
context "when top_origin matches client top_origin" do
let(:client_top_origin) { top_origin }
it_behaves_like "a valid assertion response"
end
context "when top_origin does not match client top_origin" do
let(:client_top_origin) { "https://malicious.example.com" }
it_behaves_like "a valid assertion response"
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "a valid assertion response"
end
end
end
context "when cross_origin is not set" do
let(:cross_origin) { nil }
context "when top_origin is set" do
context "when top_origin matches client top_origin" do
let(:client_top_origin) { top_origin }
it_behaves_like "a valid assertion response"
end
context "when top_origin does not match client top_origin" do
let(:client_top_origin) { "https://malicious.example.com" }
it_behaves_like "a valid assertion response"
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "a valid assertion response"
end
end
end
end
end
context "when verify_cross_origin is true" do
let(:verify_cross_origin) { true }
context "when allowed_top_origins is not set" do
let(:allowed_top_origins) { nil }
context "when cross_origin is true" do
let(:cross_origin) { true }
context "when top_origin is set" do
let(:client_top_origin) { top_origin }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TopOriginVerificationError
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TopOriginVerificationError
end
end
context "when cross_origin is false" do
let(:cross_origin) { false }
context "when top_origin is set" do
let(:client_top_origin) { top_origin }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TopOriginVerificationError
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "a valid assertion response"
end
end
context "when cross_origin is not set" do
let(:cross_origin) { nil }
context "when top_origin is set" do
let(:client_top_origin) { top_origin }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TopOriginVerificationError
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "a valid assertion response"
end
end
end
context "when allowed_top_origins is set" do
let(:allowed_top_origins) { [top_origin] }
context "when cross_origin is true" do
let(:cross_origin) { true }
context "when top_origin is set" do
context "when top_origin matches client top_origin" do
let(:client_top_origin) { top_origin }
it_behaves_like "a valid assertion response"
end
context "when top_origin does not match client top_origin" do
let(:client_top_origin) { "https://malicious.example.com" }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TopOriginVerificationError
end
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TopOriginVerificationError
end
end
context "when cross_origin is false" do
let(:cross_origin) { false }
context "when top_origin is set" do
context "when top_origin matches client top_origin" do
let(:client_top_origin) { top_origin }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TopOriginVerificationError
end
context "when top_origin does not match client top_origin" do
let(:client_top_origin) { "https://malicious.example.com" }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TopOriginVerificationError
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "a valid assertion response"
end
end
end
context "when cross_origin is not set" do
let(:cross_origin) { nil }
context "when top_origin is set" do
context "when top_origin matches client top_origin" do
let(:client_top_origin) { top_origin }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TopOriginVerificationError
end
context "when top_origin does not match client top_origin" do
let(:client_top_origin) { "https://malicious.example.com" }
it_behaves_like "an invalid assertion response that raises", WebAuthn::TopOriginVerificationError
end
context "when top_origin is not set" do
let(:client_top_origin) { nil }
it_behaves_like "a valid assertion response"
end
end
end
end
end
end
describe "migrated U2F credential" do
let(:origin) { "https://example.org" }
let(:app_id) { "#{origin}/appid" }
let(:migrated_credential) do
WebAuthn::U2fMigrator.new(
app_id: app_id,
certificate: seeds[:u2f_migration][:stored_credential][:certificate],
key_handle: seeds[:u2f_migration][:stored_credential][:key_handle],
public_key: seeds[:u2f_migration][:stored_credential][:public_key],
counter: 41
)
end
let(:credential_public_key) { migrated_credential.credential.public_key }
let(:assertion_data) { seeds[:u2f_migration][:assertion] }
let(:assertion_response) do
WebAuthn::AuthenticatorAssertionResponse.new(
client_data_json: WebAuthn::Encoders::Base64Encoder.decode(assertion_data[:response][:client_data_json]),
authenticator_data: WebAuthn::Encoders::Base64Encoder.decode(assertion_data[:response][:authenticator_data]),
signature: WebAuthn::Encoders::Base64Encoder.decode(assertion_data[:response][:signature])
)
end
let(:original_challenge) { WebAuthn::Encoders::Base64Encoder.decode(assertion_data[:challenge]) }
context "when correct FIDO AppID is given as rp_id" do
let(:rp_id) { app_id }
it_behaves_like "a valid assertion response"
end
end
context "when Authenticator Data is invalid" do
let(:authenticator_data) { assertion["response"]["authenticatorData"][0..31] }
it_behaves_like "an invalid assertion response that raises", WebAuthn::AuthenticatorDataVerificationError
end
end