-
Notifications
You must be signed in to change notification settings - Fork 25
/
dhcp_fingerprints.conf
2006 lines (1740 loc) · 38.2 KB
/
dhcp_fingerprints.conf
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
# dhcp_fingerprints.conf Version 6.8.2 Date 20140609
#
# FingerBank - DHCP fingerprint / signature database
# Copyright (C) 2008-2013 Inverse inc.
#
# The FingerBank database is made available under the Open Database License.
# See LICENSE.odbl-10.txt for the full text or
# http://opendatacommons.org/licenses/odbl/1.0/
#
# Any rights in individual contents of the database are licensed under the
# Database Contents License. See LICENSE.dbcl-10.txt for the full text or
# http://opendatacommons.org/licenses/dbcl/1.0/
#
#
# PacketFence specific information
#
# The identifiers in the "class" and "os" definitions are trigger IDs
# When an OS is detected, the appropriate os and class triggers are thrown
#
# Please see violations.conf for examples of how to auto-register or ban
# specific OS types.
[class 1]
description=Windows
members=100-199
[class 2]
description=Macintosh
members=200-299
[class 3]
description=VoIP Phones/Adapters
members=300-399
[class 4]
description=Routers and APs
members=400-499
[class 5]
description=Linux
members=500-599
[class 6]
description=Gaming Consoles
members=600-699
[class 7]
description=Home Audio/Video Equipment
members=700-799
[class 8]
description=Printers
members=800-899
[class 9]
description=Switches
members=900-999
[class 10]
description=Storage Devices
members=1000-1099
[class 11]
description=Smartphones/PDAs/Tablets
members=1100-1199
[class 12]
description=Monitoring Devices
members=1200-1299
[class 13]
description=Video Conferencing
members=1300-1399
[class 14]
description=BSD
members=1400-1499
[class 15]
description=Misc
members=1500-1599
[class 16]
description=Dead OSes
members=1600-1699,102-106
[class 17]
description=Network Boot Agents
members=1700-1799
[class 18]
description=CD-Based OSes
members=1800-1899
[class 19]
description=Solaris
members=1900-1999
[class 20]
description=Projectors
members=2000-2099
[class 21]
description=Thin Clients
members=2100-2199
[class 22]
description=Physical Security
members=2200-2299
[class 23]
description=Datacenter appliance
members=2300-2399
[class 24]
description=Point of Sale devices
members=2400-2499
[class 25]
description=Scanner
members=2500-2599
[os 100]
description=Microsoft Windows XP (Version 5.1, 5.2)
vendor_id=<<EOT
MSFT 5.0
EOT
fingerprints=<<EOT
1,15,3,6,44,46,47,31,33,249,43
1,15,3,6,44,46,47,31,33,249,43,252
1,15,3,6,44,46,47,31,33,249,43,252,12
15,3,6,44,46,47,31,33,249,43
15,3,6,44,46,47,31,33,249,43,252
15,3,6,44,46,47,31,33,249,43,252,12
28,2,3,15,6,12,44,47
1,15,3,6,44,46,47,31,33,121,249,43,200
EOT
[os 101]
description=Microsoft Windows 2000 (Version 5.0)
vendor_id=<<EOT
MSFT 5.0
MSFT
EOT
fingerprints=<<EOT
1,15,3,6,44,46,47,31,33,43
1,15,3,6,44,46,47,31,33,43,252
1,15,3,6,44,46,47,31,33,43,252,12
15,3,6,44,46,47,31,33,43
15,3,6,44,46,47,31,33,43,252
EOT
[os 102]
description=Microsoft Windows ME (Version 4.90)
vendor_id=<<EOT
MS
MSFT
EOT
fingerprints=<<EOT
1,15,3,6,44,46,47,31,33,43,77
15,3,6,44,46,47,31,33,43,77
EOT
[os 103]
description=Microsoft Windows 98 (Version 4.10)
vendor_id=<<EOT
MSFT 98
MSFT
EOT
fingerprints=<<EOT
1,3,6,15,44,46,47,57
EOT
[os 104]
description=Microsoft Windows 95 (Version 4.0)
fingerprints=<<EOT
1,3,15,6,44,46,47
EOT
[os 105]
description=Microsoft Windows NT 4 (Version 4.0)
fingerprints=<<EOT
1,2,3,6,12,15,26,28,85,86,87,88,44,45,46,47,70,69,78,79
1,15,3,44,46,47,6
EOT
[os 106]
description=Microsoft Windows 98SE (Version 4.10)
vendor_id=<<EOT
MSFT 5.0
EOT
fingerprints=<<EOT
15,3,6,44,46,47,43,77
1,15,3,6,44,46,47,43,77
15,3,6,44,46,47,43,77,252
1,15,3,6,44,46,47,43,77,252
EOT
[os 107]
description=Microsoft Windows Vista/7 or Server 2008 (Version 6.0)
vendor_id=<<EOT
MSFT 5.0
EOT
fingerprints=<<EOT
1,15,3,6,44,46,47,31,33,121,249,43
1,15,3,6,44,46,47,31,33,121,249,43,0,32,176,67
1,15,3,6,44,46,47,31,33,121,249,43,0,176,67
1,15,3,6,44,46,47,31,33,121,249,43,252
1,15,3,6,44,46,47,31,33,121,249,43,195
1,15,3,6,44,46,47,31,33,121,249,43,0,112,64
1,15,3,6,44,46,47,31,33,121,249,43,0,128,64
1,15,3,6,44,46,47,31,33,121,249,43,0,168,112,64
1,15,3,6,44,46,47,31,33,121,249,43,0,188,67
1,15,3,6,44,46,47,31,33,121,249,43,0,64,112
1,3,6,12,15,28,44,46,47,33,249
EOT
[os 108]
description=Microsoft Windows 2003 (Version 5.2)
[os 109]
description=Microsoft Windows 8 or 8.1 (Version 6.2)
fingerprints=<<EOT
1,15,3,6,44,46,47,31,33,121,249,252,43
1,3,6,15,33,44,46,47,121,249,43,60,212
EOT
[os 110]
description=Microsoft Windows 7 or Server 2008 R2 or Server SBS 2011 (Version 6.1)
fingerprints=<<EOT
1,15,3,6,44,46,47,31,33,121,249,43,0,80
1,15,3,6,44,46,47,31,33,121,249,43,0,112,98
1,15,3,6,44,46,47,31,33,121,249,43,0,176,112
1,15,3,6,44,46,47,31,33,121,249,43,0,192,176,112
EOT
[os 111]
description=Microsoft Windows XP for embedded devices
vendor_id=<<EOT
MSFT 5.0
EOT
fingerprints=<<EOT
1,15,3,6,44,46,47,31,33,249,43,171,172
EOT
[os 200]
description=Mac OS X
vendor_id=<<EOT
Apple
EOT
fingerprints=<<EOT
1,3,6,15,112,113,78,79,95
1,3,6,15,112,113,78,79,95,252
3,6,15,112,113,78,79,95,252
3,6,15,112,113,78,79,95
3,6,15,112,113,78,79,95,44,47
1,3,6,15,112,113,78,79,95,44,47
1,3,6,15,112,113,78,79
1,3,6,15,119,95,252,44,46,101
1,3,6,15,119,112,113,78,79,95,252
3,6,15,112,113,78,79,95,252,44,47
1,3,6,15,112,113,78,79,95,252,44,47
1,3,12,6,15,112,113,78,79
60,43
43,60
1,3,6,15,119,95,252,44,46,47
1,3,6,15,119,95,252,44,46,47,101
1,3,6,15,67,43,60
EOT
[os 201]
description=Mac OS 9
fingerprints=<<EOT
1,3,6,15,33,42,44,45,46,47,69,70,71,74,78,79
EOT
[os 202]
description=Mac OS X Lion
fingerprints=<<EOT
1,3,6,15,119,95,252,44,46
EOT
[os 300]
description=Cisco IP Phone
vendor_id=<<EOT
Cisco Systems, Inc. IP Phone
Cisco Systems, Inc. IP Phone 7905
Cisco Systems, Inc. IP Phone 7912
Cisco Systems, Inc. IP Phone CP-7960
Cisco Systems, Inc. IP Phone CP-7960G
EOT
fingerprints=<<EOT
1,66,6,3,15,150,35
1,66,6,3,15,150,35,151
1,3,6,15,42,66,150
1,28,66,6,15,3,35,150
1,3,6,15,35,66,51,150
1,3,6,15,42,66,51,150
1,3,6,15,35,66,150
1,3,6,12,15,28,42,66,149,150
6,3,1,66,15,150
1,3,15,6,12,35,66,150
EOT
[os 301]
description=Avaya IP Phone
fingerprints=<<EOT
1,3,6,15,66,69,43,176
1,3,7,6,15,66,69,43,176
1,28,3,6,15,42,242
1,28,3,6,15,42,43,176,66
1,28,3,15,6,12,7,26,42,43,242
EOT
[os 302]
description=BATM VoIP Adapter
fingerprints=<<EOT
1,3,6,15,12
EOT
[os 303]
description=Linksys PAP VoIP
fingerprints=<<EOT
1,3,42,6,7,15,58,59,66
EOT
[os 304]
description=Mediatrix VoIP Adapter
fingerprints=<<EOT
1,3,6,12,15,42,43
EOT
[os 305]
description=Uniden DTA VoIP Adapater
fingerprints=<<EOT
1,2,3,6,15,42
EOT
[os 306]
description=UniData IP Phone
fingerprints=<<EOT
54,51,58,59,1,3,6,15,28,139
54,51,58,59,1,3,6,15,28,139,2,42,66
EOT
[os 307]
description=Sunrocket VoIP Gizmo
vendor_id=<<EOT
MTA6328R
EOT
fingerprints=<<EOT
3,1,6,12,15,67,66,43
EOT
[os 308]
description=Sipura VoIP Adaptor
fingerprints=<<EOT
1,15,3,6,44,46,47,66
1,3,42,6,7,15,58,59,44,66
EOT
[os 309]
description=Clipcomm IP Phone
fingerprints=<<EOT
1,3,6,15,44,46,47,31,33,43
EOT
[os 310]
description=Nortel IP Phone
fingerprints=<<EOT
1,28,1,3
1,28,3
51,58,59,1,3,43,128,144,157,191,251
1,28,1,3,43,128,131,144,157,188,191,205,219,223,232,247,251,58,59
1,28,3,43,128,131,144,157,188,191,205,219,223,232,247,251,58,59
1,28,3,43,128,131,144,157,188,191,205,219,223,232,247,251,58,59,66
1,28,3,43,128,131,144,157,188,191,205,219,223,232,247,251,58,59,66,6,15
1,28,3,43,128,131,144,157,188,191,205,219,223,224,227,230,232,235,238,241,244,247,249,251,254,58,59,66
1,28,3,43,128,131,144,157,188,191,205,219,223,224,227,230,232,235,238,241,244,247,249,251,254,58,59,66,6,15
1,28,3,99,43,128,131,144,157,188,191,205,219,223,224,227,230,232,235,238,241,244,247,249,251,254,58,59,66,6,15
EOT
[os 312]
description=ZyXEL WiFi Phone
fingerprints=<<EOT
1,3,6,66,15
EOT
[os 313]
description=UTStarcom F3000
fingerprints=<<EOT
1,6,15,3,43
EOT
[os 314]
description=ShoreTel IP Phone
fingerprints=<<EOT
1,28,156,4,3,66,42
EOT
[os 315]
description=Siemens OpenStage IP Phones
fingerprints=<<EOT
1,2,3,6,12,15,28,33,42,43,120
EOT
[os 316]
description=Siemens optiPoint WL2 Professional
fingerprints=<<EOT
1,2,3,6,12,15,28,42,43,120
EOT
[os 317]
description=Siemens optiPoint 410/420
fingerprints=<<EOT
1,28,43,3
1,28,3,6,15,33,42,2,43
1,28,3,6,15,33,42,2,43,120
EOT
[os 318]
description=Alcatel Advanced Reflex IP Phone
fingerprints=<<EOT
1,28,54,58,59,60,43,3
EOT
[os 319]
description=Alcatel IP Touch 8 Series Phones
fingerprints=<<EOT
1,3,28,43,58,59
EOT
[os 320]
description=Cisco/Linksys SPA series IP Phone
fingerprints=<<EOT
1,3,42,6,7,15,58,59,44,66,150,151
1,3,42,6,7,15,58,59,44,66,150,2,151
1,3,42,6,7,15,58,59,66,2,150,151,160,159
EOT
[os 321]
description=Siemens optiPoint 150 S
fingerprints=<<EOT
1,3,6,12,15,66
EOT
[os 322]
# see http://mitel.ca/products
description=Mitel IP Phone
fingerprints=<<EOT
1,3,6,12,42,44,51,54,58,59,128,66,120,129,130,131,132,133,134,135,224,138,125,43
1,3,6,12,42,44,51,54,58,59,128,66,120,129,130,131,132,133,134,135,224,138,125,43,178,179
1,3,6,12,42,44,51,54,58,59,128,66,120,129,130,131,132,133,134,135,224,138,125,43,225,226
EOT
[os 323]
description=Polycom Conference IP Phone
fingerprints=<<EOT
1,3,6,15,42,43,44,46,47,119
1,28,66,6,15,3,35,43,128,131,144,157,188,191,205,219,223,232,247,251
1,3,6,7,15,66,151,152
1,3,6,7,15,66,151,152,43,128,129,130
66,160,7,54,42,15,6,4,3,2,1
191,157,144,128,66,160,7,54,42,15,6,4,3,2,1
1,2,3,4,6,15,42,54,160,66,43
1,28,160,66,43,3,4,42,2,6,15
1,28,160,43,3,4,42,2,6,15
1,28,3,160,66,4,42,2,6,15
1,2,3,4,6,15,42,54,66,43
1,2,3,4,6,15,42,54,7,160,66
1,28,3,160,66,4,42,2,6,15,128,144,157,191
1,28,160,66,43,3,4,42,2,6,15,7
1,28,160,3,4,42,2,6,15
EOT
[os 324]
description=Polycom SoundPoint IP 430
fingerprints=<<EOT
1,28,66,3,4,42,2,6,15
EOT
[os 325]
description=Snom VoIP solutions
fingerprints=<<EOT
1,3,6,12,15,42,66,67,120
EOT
[os 326]
description=Aastra VoIP
fingerprints=<<EOT
1,3,6,42,43,2,66
1,3,6,42,43,66,159,160
1,3,6,42,43,2,66,159,160
1,28,1,3,6,42,66
EOT
[os 327]
description=Nortel IP Phone Model 1535
# 1,3,6,12,15,17,23,28,29,31,33,40,41,42,66 is a confirmed 1535
# the other one is a guess by close match
fingerprints=<<EOT
1,3,6,12,15,17,23,28,29,31,33,40,41,42,66
1,3,6,12,15,17,23,28,29,31,33,40,41,42,66,72,150
EOT
[os 328]
description=Polycom SoundPoint IP 450
fingerprints=<<EOT
1,28,160,66,3,4,42,2,6,15
EOT
[os 329]
description=Polycom SoundStation IP 6000
fingerprints=<<EOT
1,3,15,160,66,3,4,54,42,2,6,15
EOT
[os 330]
description=Polycom SoundPoint IP 301
fingerprints=<<EOT
1,28,3,66,4,42,2,6,15
EOT
[os 331]
description=GrandStream HandyTone 503 ATA
fingerprints=<<EOT
1,3,6,12,15,28,66
EOT
[os 332]
description=Unidentified Polycom
fingerprints=<<EOT
1,28,66,6,15,3,35,176
1,3,15,242,4,54,42,2,6
EOT
[os 333]
# another MAC Vendor was also seen before: AirDefense inc. but no identification could be made
description=MagicJack Plus
fingerprints=<<EOT
54,51,58,59,1,3,6,15,28
EOT
[os 334]
description=Cisco ATA 186
fingerprints=<<EOT
1,3,6,12,15,42,66,150
EOT
[os 335]
description=Gigaset Communications GmbH
fingerprints=<<EOT
1,3,6,15,120,114,125
EOT
[os 336]
description=XIAMEN YEALINK NETWORK TECHNOLOGY
fingerprints=<<EOT
1,2,3,4,6,7,12,15,28,42,66,67,43,120
EOT
[os 337]
description=NetCODEC Co VoIP
vendor_id=<<EOT
Netcodec co.
EOT
fingerprints=<<EOT
1,3,6,12,15,26,28,40,41,42,43
EOT
[os 338]
description=Panasonic KX-UDS124CE SIP-DECT Base Station
vendor_id=<<EOT
Panasonic Communications Co., Ltd.
EOT
fingerprints=<<EOT
58,59,6,15,66,67,51,54,1,3
EOT
[os 339]
description=Grandstream Telephone
vendor_id=<<EOT
Grandstream Networks, Inc.
EOT
fingerprints=<<EOT
1,2,3,6,12,15,28,42,43,66,120,125
1,2,3,6,12,15,28,42,43,66,125
EOT
[os 340]
description=2N TELEKOMUNIKACE Helios Phones
vendor_id=<<EOT
2N TELEKOMUNIKACE a.s.
EOT
fingerprints=<<EOT
1,3,28,6,66,150
EOT
[os 400]
description=Cisco Wireless Access Point
vendor_id=<<EOT
Airespace.AP120
EOT
fingerprints=<<EOT
1,28,3,6,15,67,4,7
1,28,3,6,15,67,4
1,28,3,6,15,44
1,28,3,43
1,6,15,44,3,33,150,43
1,6,15,44,3,7,33,150,43
1,66,6,15,44,3,67,33,150,43
1,66,6,15,44,3,67,12,33,150,43
1,66,6,15,44,3,67,12,33,150,43,125
1,3,4,6,12,15,28,42,43,66,67,60
EOT
[os 401]
description=Compex Wireless Access Point
fingerprints=<<EOT
1,3,15,6,43,77
EOT
[os 402]
description=Cisco/Linksys Router
fingerprints=<<EOT
1,3,6,12,15,28
1,3,6,15,28,54
1,28,2,3,15,6,12,4,7,23,26,43,50,51,54,55,60,61
1,28,2,3,15,6,12,4,7,23,26,43,50,51,54,55,60,72
1,3,6,12,15,44,46,47
1,15,3,6,44,46,47
1,15,3,6,44,46,47,1,3,6,15,44,46,47
1,15,3,6,44,46,47,66,1,3,6,15,44,46,47
1,3,6,12,15,28,44
15,3,6,44,46,47
6,3,1
1,3,6,12,15,28,44,33,249
1,3,6,12,15,28,40,41,42,121
EOT
[os 403]
description=Netgear Router
# 1,121,3,6,12,15,28,33,43 is WPN824N
fingerprints=<<EOT
1,3,6,12,15,28,33,121
3,6,15
3,1,6,15
3,1,6,15,12
1,121,3,6,12,15,28,33
1,121,3,6,12,15,28,33,43
1,3,6,12,15,28,33,44,121
1,3,6,12,15,28,33,44,121,249
1,3,6,12,15,28,33,121,249
EOT
# 1,3,6,15 : 3 CONFLICTS with BlackBerry
[os 404]
description=OEMed Wireless Router
fingerprints=<<EOT
EOT
[os 405]
description=Apple Airport
fingerprints=<<EOT
28,3,6,15
1,28,3,6,15
1,2,3,15,6,12,44
EOT
[os 406]
description=Symbol Wireless Access Point
vendor_id=<<EOT
S24AP
EOT
fingerprints=<<EOT
1,3,6,12,15,43,66,67,128,129,130,131,132,133,134,135
EOT
[os 407]
description=Nortel/Trapeze Wireless Access Point
vendor_id=<<EOT
TRAPEZE-AP:2330
EOT
[os 408]
description=Gemtek Wireless Router
fingerprints=<<EOT
1,3,6,15,43,44,46,47
1,28,2,3,15,6,12,4,7,23,26,43,50,51,54,55,60,61,72
EOT
[os 409]
description=D-Link Wireless Router
# 1,3,6,44,15,46,47 reported as DIR-628
# 1,3,6,15,33,44,46,47,121 as DIR-300
# 1,3,6,12,15,28,33,40,41,42,44,46,47,121,249 as DIR-651
fingerprints=<<EOT
1,3,6,12,15,66,69,70,67
1,3,6,12,15,28,40,41,42,44,46,47
1,3,6,12,15,28,33,40,41,42,44,46,47
1,3,6,12,15,28,33,40,41,42,44,46,47,121,249
1,3,6,44,15,46,47
1,3,6,12,15,28,44,46,47
1,3,6,15,33,44,46,47,121
1,3,6,44,46,47,12,15,17,23,28,29,31,33
1,3,6,15,33,44,46,47,121,249,43
EOT
[os 410]
description=2Wire Residential Gateway
fingerprints=<<EOT
1,2,3,6,15,88,42,44,46,47
EOT
[os 411]
description=Motorola Router
fingerprints=<<EOT
1,28,1,3,6,4
EOT
[os 412]
description=Buffalo Wireless AP
fingerprints=<<EOT
1,3,6,12,15,23,28,29,31,33,40,41,42,44
EOT
[os 414]
description=Bluesocket BSC
fingerprints=<<EOT
1,28,3,15,6,12,44
EOT
[os 415]
description=DD-WRT Router
# also seen on an amazon kindle firmware 3.1
# We will wait until we will use vendor_id
#1,3,6,12,15,28,40,41,42
fingerprints=<<EOT
EOT
[os 416]
description=Trendnet Access Point
fingerprints=<<EOT
1,28,6,5,3,44,15
6,5,3,44,15
EOT
[os 417]
description=TP-Link Wireless LAN Router
# 1,3,43,44,46,47,6,33,121 is TL-WR340G
# 1,3,6,15,33,43,44,46,47,121 is TL-WR741N
fingerprints=<<EOT
1,3,43,44,46,47,6
1,3,6,12,15,17,28,42
1,28,3,43,44,46,47,6
1,3,43,44,46,47,6,33,121
1,3,43,44,46,47,6,33,121,249
1,3,6,15,33,43,44,46,47,121
1,3,6,15,33,43,44,46,47,121,249
1,3,6,12,15,28,42,44
EOT
[os 418]
description=Ruckus Wireless
fingerprints=<<EOT
1,2,3,6,12,15,28,42,43,44
EOT
[os 419]
description=Enterasys or Trapeze Wireless Access Point
fingerprints=<<EOT
1,15,3,6,43
EOT
[os 420]
description=Enterasys HiPath Wireless Access Point
fingerprints=<<EOT
1,28,3,6,15,12
EOT
[os 421]
description=Quanta Microsystems Router
fingerprints=<<EOT
3,22,23,1,24,33,35,6,15
1,3,6,12,15,28,44,212
EOT
[os 422]
description=HP ProCurve Access Point
fingerprints=<<EOT
1,28,2,3,15,6,12,43
EOT
[os 423]
description=HP ProCurve Controller
fingerprints=<<EOT
# 1,28,2,3,15,6,12,44 conflict with Kyocera m@c vendor
EOT
[os 424]
description=Aruba Access Point
fingerprints=<<EOT
1,3,4,6,12,15,28,42,43,60
1,3,6,12,15,4,43,44,60,42,28
1,3,6,12,15,17,43,60
1,3,6,15,43,60
1,28,2,3,15,6,43
EOT
[os 425]
description=Trendnet Wireless Router
fingerprints=<<EOT
1,249,3,6,12,15,28,33,40,41,42,44
EOT
[os 426]
# 1,3,121,6,12,15,28,50,33 not 100% sure of that
description=Belkin Wireless Router
fingerprints=<<EOT
3,1,6,15,121
1,3,12,23,44,47
1,3,6,12,15,28,33,44
1,3,6,12,15,28,50,33
1,3,121,6,12,15,28,50,33
EOT
[os 427]
description=MikroTik (RouterOS)
fingerprints=<<EOT
1,121,3,33,6,42
EOT
[os 428]
description=Freebox Wireless Router
fingerprints=<<EOT
1,3,6,15,51,58,59,255
EOT
[os 429]
description=AeroHive Hive Access Points
fingerprints=<<EOT
1,3,6,7,12,15,28,40,41,42,225,226,227,228
1,3,6,7,12,15,28,40,41,42,225,226,227,228,229,230,231
EOT
[os 430]
description=Tenda Wireless Router
fingerprints=<<EOT
1,3,6,15,31,33,43,44,46,47,249
EOT
[os 431]
description=Zioncom Wireless Router
fingerprints=<<EOT
1,3,6,10,12,14,15,28,40,41,42,87
EOT
[os 432]
description=AP Meraki
fingerprints=<<EOT
1,3,6,12,15,26,28,40,41,42
EOT
[os 433]
description=Actiontec Wireless Router
fingerprints=<<EOT
1,28,2,3,15,6,4,7,23,26,43,50,51,54,55,60,61,72
EOT
[os 434]
description=N300 Wireless Router
fingerprints=<<EOT
1,121,249,3,6,12,15,28,33,43
EOT
[os 435]
# 1,3,6,12,15,28,42,43,186,187,188,189,191,192 Version Fimware : 5.5.0.0-090R
description=Motorola AP 6511
fingerprints=<<EOT
1,28,2,3,15,6,12,43,191,186,187,188,189
1,3,6,12,15,28,42,43,186,187,188,189,191,192
EOT
[os 436]
# http://www.astarosecurity.com/astaro-wireless-access-point-ap-10
description=Sophos/Astaro Wireless Access Point AP 10 Access Point
vendor_id=<<EOT
Astaro AG
EOT
fingerprints=<<EOT
1,3,6,12,15,17,28,42,234
EOT
[os 500]
description=Debian-based Linux
# 1,28,2,3,15,6,119,12 is Splashtop OS?
fingerprints=<<EOT
1,28,2,3,15,6,12
1,28,2,3,15,6,12,42
3,6,15,28,12,7,9,42,48,49
1,28,2,3,15,6,12,44,47
1,28,2,3,15,6,12,44,47,26
1,28,2,3,15,6,119,12,44,47,26
1,28,2,3,15,6,119,12
1,28,2,3,15,6,119,12,44,47,26,121,42,121,249,33,252,42
1,28,2,121,15,6,12,40,41,42,26,119,3,121,249,33,42
1,28,2,3,15,6,12,121,249,33,252,42
1,28,3,121,26,12,15,119,6,40,41,87,85,86,44,45,46,47,42,121,249,33,252,42
EOT
[os 501]
description=Generic Linux
fingerprints=<<EOT
3,6,12,15,17,23,28,29,31,33,40,41,42,119
1,3,6,12,15,23,28,29,31,33,40,41,42
3,6,12,15,17,23,28,29,31,33,40,41,42,9,7,200,44
1,3,6,12,15,23,28,29,31,33,40,41,42,9,7,200,44
1,28,2,3,15,6,12,121,249,252,42
1,3,6,12,15,28,40,41,42,119
1,121,33,3,6,12,15,28,42,51,54,58,59,119
1,28,2,121,15,6,12,40,41,42,26,119,3,121,249,33,252,42
1,15,3,6,44,46,47,31,33,249,43,0,128,112
EOT
[os 502]
description=SUSE Linux/Novell Desktop
fingerprints=<<EOT
1,3,6,12,15,17,23,28,29,31,33,40,41,42,9,7,200,44
1,3,6,12,15,17,23,28,29,31,33,40,41,42,9,7,44,45,46,47
1,3,6,12,15,17,23,28,29,31,33,40,41,42,9,7,44,45,46,47,119
1,28,2,3,15,6,12,40,41
EOT
[os 503]
description=RedHat/Fedora-based Linux
fingerprints=<<EOT
1,28,2,3,15,6,12,40,41,42
28,2,3,15,6,12,40,41,42
1,28,2,3,15,6,12,40,41,42,26,119
1,28,2,3,15,6,12,40,41,42,26
EOT
[os 504]
description=Gentoo Linux
fingerprints=<<EOT
1,3,6,12,15,17,23,28,29,31,33,40,41,42
1,3,6,12,15,17,23,28,29,31,33,40,41,42,119
58,59,1,28,121,33,3,12,119,15,6,40,41,42,26
1,121,33,3,6,12,15,28,40,41,42,51,58,59,119
1,121,33,3,6,12,15,26,28,42,51,54,58,59,119
EOT
[os 505]
description=Ubuntu/Debian 5/Knoppix 6
fingerprints=<<EOT
1,28,2,3,15,6,119,12,44,47,26,121
1,28,2,3,15,6,119,12,44,47,26,121,42
EOT
[os 506]
description=FortiOS
fingerprints=<<EOT
1,2,3,6,12,15,28,40,42
EOT
[os 507]
description=Puppy Linux 4.x
fingerprints=<<EOT
58,59,1,28,121,33,3,12,119,15,6,40,41,42,26,17,120
EOT
[os 508]
description=Meego Netbook
fingerprints=<<EOT
252,3,42,15,6,1,12
EOT
# not 100% sure about this one
[os 509]
description=Ubuntu Server 10.04 LTS
fingerprints=<<EOT
58,59,1,28,121,33,3,12,119,15,6,26,17,120
EOT
[os 510]
description=Suse Linux Enterprise Desktop 11
fingerprints=<<EOT
1,28,3,26,12,15,6,40,41,87,85,86,44,45,46,47,42
EOT
[os 511]
description=Ubuntu 11.04
fingerprints=<<EOT
1,28,2,3,15,6,119,12,44,47,26,121,42,121,249,252,42
EOT
[os 512]
# find an better description, this FP can be an imcompleted Centos6.4
description=Fedora 14 based distro
fingerprints=<<EOT