-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathyubi1.txt
More file actions
3449 lines (3112 loc) · 128 KB
/
Copy pathyubi1.txt
File metadata and controls
3449 lines (3112 loc) · 128 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
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
No. Time Source Destination Protocol Length Info
1 0.000000 host 3.24.0 USB 36 GET DESCRIPTOR Request DEVICE
Frame 1: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387ba95e830
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 2]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
2 0.027868 3.24.0 host USB 46 GET DESCRIPTOR Response DEVICE
Frame 2: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387ba95e830
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 18
[Request in: 1]
[Time from request: 0.027868000 seconds]
Control transfer stage: Complete (3)
DEVICE DESCRIPTOR
bLength: 18
bDescriptorType: 0x01 (DEVICE)
bcdUSB: 0x0200
bDeviceClass: Device (0x00)
bDeviceSubClass: 0
bDeviceProtocol: 0 (Use class code info from Interface Descriptors)
bMaxPacketSize0: 64
idVendor: Yubico.com (0x1050)
idProduct: Yubikey 4/5 OTP+U2F+CCID (0x0407)
bcdDevice: 0x0543
iManufacturer: 1
iProduct: 2
iSerialNumber: 0
bNumConfigurations: 1
No. Time Source Destination Protocol Length Info
3 0.027898 host 3.24.0 USB 36 GET DESCRIPTOR Request CONFIGURATION
Frame 3: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bc7f32a0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 4]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
4 0.030868 3.24.0 host USB 37 GET DESCRIPTOR Response CONFIGURATION
Frame 4: 37 bytes on wire (296 bits), 37 bytes captured (296 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bc7f32a0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 9
[Request in: 3]
[Time from request: 0.002970000 seconds]
Control transfer stage: Complete (3)
CONFIGURATION DESCRIPTOR
bLength: 9
bDescriptorType: 0x02 (CONFIGURATION)
wTotalLength: 150
bNumInterfaces: 3
bConfigurationValue: 1
iConfiguration: 0
Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP
bMaxPower: 15 (30mA)
No. Time Source Destination Protocol Length Info
5 0.030883 host 3.24.0 USB 36 GET DESCRIPTOR Request CONFIGURATION
Frame 5: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387ba4337c0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 6]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
6 0.035868 3.24.0 host USB 178 GET DESCRIPTOR Response CONFIGURATION
Frame 6: 178 bytes on wire (1424 bits), 178 bytes captured (1424 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387ba4337c0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 150
[Request in: 5]
[Time from request: 0.004985000 seconds]
Control transfer stage: Complete (3)
CONFIGURATION DESCRIPTOR
bLength: 9
bDescriptorType: 0x02 (CONFIGURATION)
wTotalLength: 150
bNumInterfaces: 3
bConfigurationValue: 1
iConfiguration: 0
Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP
bMaxPower: 15 (30mA)
INTERFACE DESCRIPTOR (0.0): class HID
bLength: 9
bDescriptorType: 0x04 (INTERFACE)
bInterfaceNumber: 0
bAlternateSetting: 0
bNumEndpoints: 1
bInterfaceClass: HID (0x03)
bInterfaceSubClass: Boot Interface (0x01)
bInterfaceProtocol: Keyboard (0x01)
iInterface: 0
HID DESCRIPTOR
ENDPOINT DESCRIPTOR
bLength: 7
bDescriptorType: 0x05 (ENDPOINT)
bEndpointAddress: 0x81 IN Endpoint:1
bmAttributes: 0x03
wMaxPacketSize: 8
bInterval: 10
INTERFACE DESCRIPTOR (1.0): class HID
bLength: 9
bDescriptorType: 0x04 (INTERFACE)
bInterfaceNumber: 1
bAlternateSetting: 0
bNumEndpoints: 2
bInterfaceClass: HID (0x03)
bInterfaceSubClass: No Subclass (0x00)
bInterfaceProtocol: 0x00
iInterface: 0
HID DESCRIPTOR
ENDPOINT DESCRIPTOR
bLength: 7
bDescriptorType: 0x05 (ENDPOINT)
bEndpointAddress: 0x04 OUT Endpoint:4
bmAttributes: 0x03
wMaxPacketSize: 64
bInterval: 2
ENDPOINT DESCRIPTOR
bLength: 7
bDescriptorType: 0x05 (ENDPOINT)
bEndpointAddress: 0x84 IN Endpoint:4
bmAttributes: 0x03
wMaxPacketSize: 64
bInterval: 2
INTERFACE DESCRIPTOR (2.0): class Smart Card
bLength: 9
bDescriptorType: 0x04 (INTERFACE)
bInterfaceNumber: 2
bAlternateSetting: 0
bNumEndpoints: 3
bInterfaceClass: Smart Card (0x0b)
bInterfaceSubClass: 0x00
bInterfaceProtocol: 0x00
iInterface: 0
SMART CARD DEVICE CLASS DESCRIPTOR
ENDPOINT DESCRIPTOR
bLength: 7
bDescriptorType: 0x05 (ENDPOINT)
bEndpointAddress: 0x02 OUT Endpoint:2
bmAttributes: 0x02
wMaxPacketSize: 64
bInterval: 0
ENDPOINT DESCRIPTOR
bLength: 7
bDescriptorType: 0x05 (ENDPOINT)
bEndpointAddress: 0x82 IN Endpoint:2
bmAttributes: 0x02
wMaxPacketSize: 64
bInterval: 0
ENDPOINT DESCRIPTOR
bLength: 7
bDescriptorType: 0x05 (ENDPOINT)
bEndpointAddress: 0x83 IN Endpoint:3
bmAttributes: 0x03
wMaxPacketSize: 8
bInterval: 32
No. Time Source Destination Protocol Length Info
7 0.037479 host 3.24.0 USB 36 SET CONFIGURATION Request
Frame 7: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bd4d7890
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x00, Direction: OUT
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 8]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
8 0.044715 3.24.0 host USB 28 SET CONFIGURATION Response
Frame 8: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bd4d7890
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x00, Direction: OUT
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 0
[Request in: 7]
[Time from request: 0.007236000 seconds]
Control transfer stage: Complete (3)
No. Time Source Destination Protocol Length Info
9 0.044758 host 3.24.0 USB 27 Unknown type 7f
Frame 9: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 27
IRP ID: 0xffffa387bad852a0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_MS_FEATURE_DESCRIPTOR (0x002a)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x00, Direction: OUT
URB transfer type: Unknown (0xff)
Packet Data Length: 0
[Response in: 10]
No. Time Source Destination Protocol Length Info
10 0.044760 3.24.0 host USB 27 Unknown type 7f
Frame 10: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 27
IRP ID: 0xffffa387bad852a0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_MS_FEATURE_DESCRIPTOR (0x002a)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x00, Direction: OUT
URB transfer type: Unknown (0xff)
Packet Data Length: 0
[Request in: 9]
[Time from request: 0.000002000 seconds]
No. Time Source Destination Protocol Length Info
11 0.044764 host 3.24.0 USB 27 Unknown type 7f
Frame 11: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 27
IRP ID: 0xffffa387b1c6d530
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_MS_FEATURE_DESCRIPTOR (0x002a)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x00, Direction: OUT
URB transfer type: Unknown (0xff)
Packet Data Length: 0
[Response in: 12]
No. Time Source Destination Protocol Length Info
12 0.046875 3.24.0 host USB 44 GET STATUS Response
Frame 12: 44 bytes on wire (352 bits), 44 bytes captured (352 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387b1c6d530
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 16
[Request in: 11]
[Time from request: 0.002111000 seconds]
Control transfer stage: Complete (3)
wStatus: 0x0050
Leftover Capture Data: 0000000104000300000000000000
No. Time Source Destination Protocol Length Info
13 0.047651 host 3.24.0 USB 36 GET DESCRIPTOR Request STRING
Frame 13: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bc3c96f0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 14]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
14 0.049870 3.24.0 host USB 32 GET DESCRIPTOR Response STRING
Frame 14: 32 bytes on wire (256 bits), 32 bytes captured (256 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bc3c96f0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 4
[Request in: 13]
[Time from request: 0.002219000 seconds]
Control transfer stage: Complete (3)
STRING DESCRIPTOR
bLength: 44
bDescriptorType: 0x03 (STRING)
bString: Y
No. Time Source Destination Protocol Length Info
15 0.049893 host 3.24.0 USB 36 GET DESCRIPTOR Request STRING
Frame 15: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bc2d4320
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 16]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
16 0.052871 3.24.0 host USB 72 GET DESCRIPTOR Response STRING
Frame 16: 72 bytes on wire (576 bits), 72 bytes captured (576 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bc2d4320
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 44
[Request in: 15]
[Time from request: 0.002978000 seconds]
Control transfer stage: Complete (3)
STRING DESCRIPTOR
bLength: 44
bDescriptorType: 0x03 (STRING)
bString: YubiKey OTP+FIDO+CCID
No. Time Source Destination Protocol Length Info
17 0.053824 host 3.24.0 USB 36 GET DESCRIPTOR Request STRING
Frame 17: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bed84530
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 18]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
18 0.055871 3.24.0 host USB 32 GET DESCRIPTOR Response STRING
Frame 18: 32 bytes on wire (256 bits), 32 bytes captured (256 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bed84530
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 4
[Request in: 17]
[Time from request: 0.002047000 seconds]
Control transfer stage: Complete (3)
STRING DESCRIPTOR
bLength: 44
bDescriptorType: 0x03 (STRING)
bString: Y
No. Time Source Destination Protocol Length Info
19 0.055890 host 3.24.0 USB 36 GET DESCRIPTOR Request STRING
Frame 19: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bc74d530
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 20]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
20 0.058872 3.24.0 host USB 72 GET DESCRIPTOR Response STRING
Frame 20: 72 bytes on wire (576 bits), 72 bytes captured (576 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bc74d530
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 44
[Request in: 19]
[Time from request: 0.002982000 seconds]
Control transfer stage: Complete (3)
STRING DESCRIPTOR
bLength: 44
bDescriptorType: 0x03 (STRING)
bString: YubiKey OTP+FIDO+CCID
No. Time Source Destination Protocol Length Info
21 0.059658 host 3.24.0 USB 36 GET DESCRIPTOR Request STRING
Frame 21: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bcee6050
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 22]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
22 0.061870 3.24.0 host USB 32 GET DESCRIPTOR Response STRING
Frame 22: 32 bytes on wire (256 bits), 32 bytes captured (256 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bcee6050
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 4
[Request in: 21]
[Time from request: 0.002212000 seconds]
Control transfer stage: Complete (3)
STRING DESCRIPTOR
bLength: 44
bDescriptorType: 0x03 (STRING)
bString: Y
No. Time Source Destination Protocol Length Info
23 0.061889 host 3.24.0 USB 36 GET DESCRIPTOR Request STRING
Frame 23: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bedf5ae0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 24]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
24 0.064871 3.24.0 host USB 72 GET DESCRIPTOR Response STRING
Frame 24: 72 bytes on wire (576 bits), 72 bytes captured (576 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bedf5ae0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 44
[Request in: 23]
[Time from request: 0.002982000 seconds]
Control transfer stage: Complete (3)
STRING DESCRIPTOR
bLength: 44
bDescriptorType: 0x03 (STRING)
bString: YubiKey OTP+FIDO+CCID
No. Time Source Destination Protocol Length Info
25 0.102924 host 3.24.0 USBHID 36 SET_IDLE Request
Frame 25: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bd29ca50
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CLASS_INTERFACE (0x001b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x00, Direction: OUT
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 26]
Control transfer stage: Setup (0)
[bInterfaceClass: HID (0x03)]
Setup Data
No. Time Source Destination Protocol Length Info
26 0.103870 3.24.0 host USBHID 28 SET_IDLE Response
Frame 26: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bd29ca50
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x00, Direction: OUT
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 0
[Request in: 25]
[Time from request: 0.000946000 seconds]
Control transfer stage: Complete (3)
[bInterfaceClass: HID (0x03)]
No. Time Source Destination Protocol Length Info
27 0.103938 host 3.24.0 USBHID 36 GET DESCRIPTOR Request HID Report
Frame 27: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bdbb2a50
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_INTERFACE (0x0028)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 28]
Control transfer stage: Setup (0)
[bInterfaceClass: HID (0x03)]
Setup Data
No. Time Source Destination Protocol Length Info
28 0.107869 3.24.0 host USBHID 99 GET DESCRIPTOR Response HID Report
Frame 28: 99 bytes on wire (792 bits), 99 bytes captured (792 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bdbb2a50
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 71
[Request in: 27]
[Time from request: 0.003931000 seconds]
Control transfer stage: Complete (3)
[bInterfaceClass: HID (0x03)]
HID Report
No. Time Source Destination Protocol Length Info
29 0.109094 host 3.24.1 USB 27 URB_INTERRUPT in
Frame 29: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.1]
USBPcap pseudoheader length: 27
IRP ID: 0xffffa387bd4d7010
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x81, Direction: IN
URB transfer type: URB_INTERRUPT (0x01)
Packet Data Length: 0
[bInterfaceClass: HID (0x03)]
No. Time Source Destination Protocol Length Info
30 0.109109 host 3.24.1 USB 27 URB_INTERRUPT in
Frame 30: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.1]
USBPcap pseudoheader length: 27
IRP ID: 0xffffa387b291b560
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x81, Direction: IN
URB transfer type: URB_INTERRUPT (0x01)
Packet Data Length: 0
[bInterfaceClass: HID (0x03)]
No. Time Source Destination Protocol Length Info
31 0.110118 host 3.24.0 USBHID 36 SET_IDLE Request
Frame 31: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387b3f18a50
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CLASS_INTERFACE (0x001b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x00, Direction: OUT
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 32]
Control transfer stage: Setup (0)
[bInterfaceClass: HID (0x03)]
Setup Data
No. Time Source Destination Protocol Length Info
32 0.110871 3.24.0 host USBHID 28 SET_IDLE Response
Frame 32: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387b3f18a50
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x00, Direction: OUT
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 0
[Request in: 31]
[Time from request: 0.000753000 seconds]
Control transfer stage: Complete (3)
[bInterfaceClass: HID (0x03)]
No. Time Source Destination Protocol Length Info
33 0.110954 host 3.24.0 USBHID 36 GET DESCRIPTOR Request HID Report
Frame 33: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bd4e9a50
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_INTERFACE (0x0028)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 34]
Control transfer stage: Setup (0)
[bInterfaceClass: HID (0x03)]
Setup Data
No. Time Source Destination Protocol Length Info
34 0.113873 3.24.0 host USBHID 62 GET DESCRIPTOR Response HID Report
Frame 34: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387bd4e9a50
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 34
[Request in: 33]
[Time from request: 0.002919000 seconds]
Control transfer stage: Complete (3)
[bInterfaceClass: HID (0x03)]
HID Report
No. Time Source Destination Protocol Length Info
35 0.115237 host 3.24.4 USB 27 URB_INTERRUPT in
Frame 35: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.4]
USBPcap pseudoheader length: 27
IRP ID: 0xffffa387bded8a00
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x84, Direction: IN
URB transfer type: URB_INTERRUPT (0x01)
Packet Data Length: 0
[bInterfaceClass: HID (0x03)]
No. Time Source Destination Protocol Length Info
36 0.115254 host 3.24.4 USB 27 URB_INTERRUPT in
Frame 36: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.4]
USBPcap pseudoheader length: 27
IRP ID: 0xffffa387bd6dda00
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x84, Direction: IN
URB transfer type: URB_INTERRUPT (0x01)
Packet Data Length: 0
[bInterfaceClass: HID (0x03)]
No. Time Source Destination Protocol Length Info
37 0.116273 host 3.24.0 USB 36 GET STATUS Request
Frame 37: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387ba006010
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_STATUS_FROM_DEVICE (0x0013)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 38]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
38 0.117883 3.24.0 host USB 30 GET STATUS Response
Frame 38: 30 bytes on wire (240 bits), 30 bytes captured (240 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387ba006010
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 2
[Request in: 37]
[Time from request: 0.001610000 seconds]
Control transfer stage: Complete (3)
wStatus: 0x0000
No. Time Source Destination Protocol Length Info
39 0.118380 host 3.24.0 USB 36 GET DESCRIPTOR Request STRING
Frame 39: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387c0a02050
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 40]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
40 0.120872 3.24.0 host USB 32 GET DESCRIPTOR Response STRING
Frame 40: 32 bytes on wire (256 bits), 32 bytes captured (256 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: 3.24.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387c0a02050
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 4
[Request in: 39]
[Time from request: 0.002492000 seconds]
Control transfer stage: Complete (3)
STRING DESCRIPTOR
bLength: 14
bDescriptorType: 0x03 (STRING)
bString: Y
No. Time Source Destination Protocol Length Info
41 0.120934 host 3.24.0 USB 36 GET DESCRIPTOR Request STRING
Frame 41: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap3, id 0
USB URB
[Source: host]
[Destination: 3.24.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffa387ba006010
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
URB bus id: 3
Device address: 24
Endpoint: 0x80, Direction: IN
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 42]
Control transfer stage: Setup (0)
Setup Data
No. Time Source Destination Protocol Length Info
42 0.123877 3.24.0 host USB 42 GET DESCRIPTOR Response STRING