-
Notifications
You must be signed in to change notification settings - Fork 4
/
recog_regexes.txt
1754 lines (1754 loc) · 160 KB
/
recog_regexes.txt
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
".*\(iSeries\).*" ::DELIM:: "IBM i5/OS iSeries (OS/400)"
".*\(Mandrake Linux/\d+\.\d+\.92mdk\).*" ::DELIM:: "Mandriva (formerly Mandrake) Linux 9.2"
".*\(Mandrake Linux/\d+\.\d+\.100mdk\).*" ::DELIM:: "Mandriva (formerly Mandrake) Linux 10.0"
".*\((Mandrake|Mandriva) Linux/.*" ::DELIM:: "Mandriva (formerly Mandrake) Linux unknown version"
".*\(Mandrakelinux/.*" ::DELIM:: "Mandriva (formerly Mandrake) Linux unknown version"
".*\(PalmOS\).*" ::DELIM:: "PalmOS"
".*\(Win32\).*" ::DELIM:: "Microsoft Windows"
".*\(Darwin\).*" ::DELIM:: "Apple Mac OS X"
".*\(Ubuntu\).*" ::DELIM:: "Ubuntu"
".*(Sun )?Cobalt \(Unix\)?.*" ::DELIM:: "Sun Cobalt RaQ (Red Hat based Linux)"
".*\(BlueQuartz\).*" ::DELIM:: "Blue Quartz is created by a Cobalt RaQ UG"
"Apache\/2\.2\.11.*\(Fedora\).*" ::DELIM:: "Red Hat Fedora 11"
"Apache\/2\.2\.15.*\(Fedora\).*" ::DELIM:: "Red Hat Fedora 13"
"Apache\/2\.2\.16.*\(Fedora\).*" ::DELIM:: "Red Hat Fedora 14"
"Apache\/2\.2\.23.*\(Fedora\).*" ::DELIM:: "Red Hat Fedora 17"
"Apache\/2\.4\.3.*\(Fedora\).*" ::DELIM:: "Red Hat Fedora 18"
".*\(Fedora\).*" ::DELIM:: "Red Hat Fedora"
".*\(RHEL\).*" ::DELIM:: "Red Hat Fedora"
".*\(Red[ -]Hat([/ ]Linux)?\).*" ::DELIM:: "Red Hat Linux"
".*Debian([/ ]GNU)?(/Linux)?.*" ::DELIM:: "Debian Linux"
".*\((Linux/)?S[uU]SE(/Linux)?\).*" ::DELIM:: "Novell SuSE Linux"
".*\(NETWARE\).*" ::DELIM:: "Novell NetWare"
".*HP-UX_Apache-based_Web_Server.*" ::DELIM:: "HP HP-UX"
".*\(CentOS\).*" ::DELIM:: "CentOS Linux"
".*\(Turbolinux\).*" ::DELIM:: "Turbolinux"
".*\(FreeBSD\).*" ::DELIM:: "FreeBSD"
".*\(Asianux\).*" ::DELIM:: "Asianux Linux"
".*\(Gentoo(/Linux)?\).*" ::DELIM:: "Gentoo Linux"
".*\(Conectiva(/Linux)?\).*" ::DELIM:: "CentOS Linux"
".*\(Trustix Secure Linux(/Linux)?\).*" ::DELIM:: "CentOS Linux"
".*\(White Box\).*" ::DELIM:: "White Box Enterprise Linux"
".*\(UnitedLinux\).*" ::DELIM:: "UnitedLinux"
".*\(PLD/Linux\).*" ::DELIM:: "PLD Linux"
".*\(Vine/Linux\).*" ::DELIM:: "Vine Linux"
".*\(rPath\).*" ::DELIM:: "rPath Linux"
".*\(StartCom Linux\).*" ::DELIM:: "StartCom Linux"
".*Linux.*" ::DELIM:: "Generic Linux fallback"
"(9.[^-]+(-rpz\d?[+.]rl[\d.]+)?(-[SP]\d)?)-RedHat-[\d.]+[-.][\w.]+el([\d]+)_?(\d*)(.[\w.]+)?" ::DELIM:: "ISC BIND: Red Hat Enterprise Linux"
"(9.[^-]+(-rl[.\d]+)?(-[SP]\d)?)-RedHat-[\d.]+-[\w.]+fc([\d]+)" ::DELIM:: "ISC BIND: Fedora"
"(9.[^-]+(-[SP]\d)?)-RedHat-[\w.-]+amzn1" ::DELIM:: "ISC BIND: Red Hat - Amazon hosted"
"(9.[^-]+(-[SP]\d)?)-RedHat-[\w.-]+alios([\d\.]+)" ::DELIM:: "ISC BIND: Red Hat - Alibaba Customized EL"
"(9.[^-]+(rc\d)?(-[SP]\d)?)-RedHat-[\d.-]+([-\.][SP]\d)?(rc[\d\.]+)?" ::DELIM:: "ISC BIND: Red Hat nonspecific platform"
"(9.[^-]+(-[SP]\d)?)-[\d.]+ubuntu[\d.]+-Ubuntu" ::DELIM:: "ISC BIND: Ubuntu"
"(9.[^-]+-rpz\d?[+.]rl[\d.]+(-[SP]\d)?)-Ubuntu-[\d\.:]+[\w\.]+(-[SP]\d)?-\d?ubuntu[\d\.]+" ::DELIM:: "ISC BIND: Ubuntu with Response Policy Zone and Request Limiting patches"
"(9.[^-]+(-[SP]\d)?)(-[\d\.]+)?-Ubuntu" ::DELIM:: "ISC BIND: Ubuntu short"
"(9.[\d\.]+([+-]rpz\d?[+.]rl[\d.]+)?(-[SP]\d)?).*[+-]zentyal\d*" ::DELIM:: "ISC BIND: Ubuntu Zentyal custom distribution"
"(9.[^-]+(-[SP]\d)?)-9\+deb8u[\w~\.]+-Debian" ::DELIM:: "ISC BIND: Debian Jessie"
"(9.[^-]+(-[SP]\d)?)-9wheezy\w+-Debian" ::DELIM:: "ISC BIND: Debian Wheezy"
"(9.[^-]+(-[SP]\d)?)-([\d\.]+-)?Debian" ::DELIM:: "ISC BIND: Debian no version simple"
"(9\.\d{1,2}\.\d{1,2}-rpz\d?[+.]rl[\d.]+(-[SPW]\d+)?)" ::DELIM:: "ISC BIND: Response Policy Zone and Request Limiting patches"
"DNS Server BIND (9\.\d{1,2}-ESV(-R\d+)?(-[SPW]\d+)?)" ::DELIM:: "ISC BIND: ESV"
"^(BIND )?([89]\.[\d\.]+([ab]\d+)?(-ESV(-R\d+)?)?(-[SPW][\d\.]+)?(-REL)?(-[W]\d+)?(rc\d)?)(-NOESW)?" ::DELIM:: "ISC BIND: bare release number - ESV REL NOESW"
"dnsmasq-(\d.[\w\.]+)" ::DELIM:: "dnsmasq: simple"
"dnsmasq-(\d.[\w]+-\d)-ubnt\d" ::DELIM:: "dnsmasq: Ubiquiti"
"dnsmasq-(\d.[\w]+)-OpenDNS-\d" ::DELIM:: "dnsmasq: OpenDNS variant"
"dnsmasq-?(UNKNOWN)?" ::DELIM:: "dnsmasq: no version"
"PowerDNS Recursor (\d\.[\d.]+(-\w+)?) \(\w+@[\w.]+ built \d+ \w+@[\w.-]*\)" ::DELIM:: "PowerDNS Recursor"
"PowerDNS Recursor (\d\.[\d.]+) \(built [\w\s:]+ by [\w]+\@[\w.-]*\)" ::DELIM:: "PowerDNS Recursor: format 2"
"PowerDNS Recursor (\d\.[\d.]+(-\w+)?)" ::DELIM:: "PowerDNS Recursor: version only"
"PowerDNS Recursor (\d\.[\d.]+) \$Id[^$]*\$" ::DELIM:: "PowerDNS Recursor: ID format"
"PowerDNS Recursor" ::DELIM:: "PowerDNS Recursor: no version"
"PowerDNS Authoritative Server (\d\.[\d.]+(-rc\d)?) \(\w+@[\w.]+ built [\d\s]+\w*@[\w.-]*\)" ::DELIM:: "PowerDNS Authoritative Server"
"PowerDNS Authoritative Server (\d\.[\w.]+(-rc\d)?(-alpha\d)?(-beta\d)?) \(built [\w\s:]+ by [\w]+\@[\w.-:-]*\)" ::DELIM:: "PowerDNS Authoritative Server: format 2"
"PowerDNS Authoritative Server (\d\.[\d.]+(-\w+)?)" ::DELIM:: "PowerDNS Authoritative Server: version only"
"Served by POWERDNS (\d\.[\d.]+) \$Id[^$]*\$" ::DELIM:: "PowerDNS: Served by format with version"
"Served by PowerDNS - https\/\/www.powerdns.com\/?" ::DELIM:: "PowerDNS: Served by format without version"
"Nominum Vantio( CacheServe)? ([\d.]+)" ::DELIM:: "Nominum Vantio CacheServe"
"Nominum Vantio ([\d.]+) \(build (\d+)\)" ::DELIM:: "Nominum Vantio CacheServe, with build"
"Nominum ANS(Premier)? ([\d\.]+)" ::DELIM:: "Nominum Vantio AuthServ"
"NSD ([\d.]*(b\d+)?)" ::DELIM:: "NLnet Labs Name Server Daemon"
"unbound ([\d.]+)" ::DELIM:: "NLnet Labs Unbound"
"(unbound)" ::DELIM:: "NLnet Labs Unbound no version string"
"(BIND )?(9.[^-]+(-[SP]\d)?)-9\+deb8u\d+-Raspbian" ::DELIM:: "ISC BIND: Raspbian based on Debian Jessie"
"(9.[^-]+(-[SP]\d)?)-(\d-)?Raspbian" ::DELIM:: "ISC BIND: Raspbian based on Debian Jessie no version simple"
"Knot DNS ([\d.]+(-dev)?)" ::DELIM:: "Knot DNS"
"UltraDNS Resolver" ::DELIM:: "Neustar UltraDNS Resolver"
"UltraDNS TLD Platform - www\.ultradns\.com" ::DELIM:: "Neustar UltraDNS TLD Platform"
"Microsoft DNS (10.0.\d+)( \(\w+\))?" ::DELIM:: "Microsoft DNS on Windows 2016: GA"
"Microsoft DNS 6.3.9600( \(\w+\))?" ::DELIM:: "Microsoft DNS on Windows 2012 R2"
"Microsoft DNS 6.2.9200( \(\w+\))?" ::DELIM:: "Microsoft DNS on Windows 2012"
"Microsoft DNS 6.1.7601( \(\w+\))?" ::DELIM:: "Microsoft DNS on Windows 2008 R2 Service Pack 1"
"Microsoft DNS 6.1.7600( \(\w+\))?" ::DELIM:: "Microsoft DNS on Windows 2008 R2"
"Microsoft DNS 6.0.6002( \(\w+\))?" ::DELIM:: "Microsoft DNS on Windows 2008 Service Pack 2"
"Microsoft DNS 6.0.6001( \(\w+\))?" ::DELIM:: "Microsoft DNS on Windows 2008 Service Pack 1"
"DNSServer" ::DELIM:: "Synology DNS service"
"Incognito DNS Service ([\d\.]+) \(built" ::DELIM:: "Incognito DNS Service"
"(djbdns)[\s-](\d.\d+)" ::DELIM:: "djbdns"
"(djbdns)" ::DELIM:: "djbdns: no version"
"rbldnsd (\d[\.\w\/-]+) \(\d\d \w\w\w \d\d\d\d\)" ::DELIM:: "rbldnsd"
"ALU DNS ([\d\.]+) Build (\d+)" ::DELIM:: "ALU (Alcatel Lucent?) DNS"
"DraytekDNS-v([\d\.]+)" ::DELIM:: "Draytek DNS"
"Atlas Anchor ([\d\.]+)" ::DELIM:: "Ripe ATLAS Anchor"
"ZyWALL DNS" ::DELIM:: "ZyWALL DNS"
"Array SmartDNS" ::DELIM:: "Array Networks SmartDNS"
"gdnsd" ::DELIM:: "gdnsd"
"Hi: [\w\.: =]+\d{4}" ::DELIM:: "OzymanDNS DNS tunnel"
"Meta IP[\s\/]DNS (V[\d\.]+ )?- BIND V([\d\.]+(-REL)?) \(Build (\d+)\s?\)" ::DELIM:: "Check Point Meta IP"
"([^ ]+) Microsoft FTP Service \(Version ([1234]\.\d+)\)\." ::DELIM:: "Microsoft FTP Server on Windows NT"
"([^ ]+) Microsoft FTP Service \(Version 5.0\)\." ::DELIM:: "Microsoft FTP Server on Windows 2000"
"([^ ]+) Microsoft FTP Service \(Version 5.1\)\." ::DELIM:: "Microsoft FTP Server on Windows XP, 2003 or later versions of 2000"
"([^ ]+) Microsoft FTP Service" ::DELIM:: "Microsoft FTP Server on Windows XP, 2003 or later without version"
"Microsoft FTP Service" ::DELIM:: "Microsoft FTP Server on Windows XP, 2003 or later without version or hostname"
"([^ ]+) +FTP +Server \(Version ([^\(]+)\(PHNE_\d+\) [^\)]+\) ready.?" ::DELIM:: "FTP on HPUX with a PHNE"
"([^ ]+) +FTP +Server \(Revision \S+ Version wuftpd-([^\(]+)\(PHNE_\d+\) [^\)]+\) ready.?" ::DELIM:: "FTP on HPUX with a PHNE"
"(\S+)( \S+)? FTP Server \((Revision [\d\.]+ )?Version wu(ftpd)?-([\d\.]+).*\) ready.?" ::DELIM:: "WU-FTPD on various OS"
"(\S+)\s+FTP Server \(Version:\s+Mac OS X Server\s+([\d\.]+).*\) ready\.?" flags="REG_ICASE,REG_MULTILINE" ::DELIM:: "FTPD on Mac OS X Server with a version"
"(\S+)\s+FTP Server \(Version:\s+Mac OS X Server\) ready\.?" flags="REG_ICASE,REG_MULTILINE" ::DELIM:: "FTPD on Mac OS X Server without a version"
"(\S+)\s+FTP Server \(tnftpd (.*)\) ready\.?" ::DELIM:: "Simple tnftpd banner with a version"
"(\S+) FTP Server \(SunOS 5.(1[1-9])\) ready\.?" ::DELIM:: "SunOS/Solaris"
"(\S+) FTP Server \(SunOS 5.([789]|10)\) ready\.?" ::DELIM:: "SunOS/Solaris 5.7-5.10"
"(\S+) FTP Server \(SunOS 5.6\) ready\." ::DELIM:: "SunOS 5.6 (Solaris 2.6)"
"ProFTPD (\d+\.[^\s]+) Server \(Debian\) \[(.+)\]" ::DELIM:: "ProFTPD on Debian Linux"
"ProFTPD (\d+\.[^\s]+) Server \(Linksys(W.+)\) \[(.+)\]" ::DELIM:: "ProFTPD on a Linksys Wireless Access Point/Router"
"ProFTPD (\d+\.[^\s]+) Server \(Linksys(.*)\) \[(.+)\]" ::DELIM:: "ProFTPD on a wired Linksys device"
"ProFTPD (\d+\.[^\s]+) Server \((.*)\) \[(.+)\]" ::DELIM:: "ProFTPD with version info but no obvious OS info"
"ProFTPD (\d+\.[^\s]+) Server ready\." ::DELIM:: "ProFTPD with only version info"
"ProFTPD FTP Server ready\." ::DELIM:: "ProFTPD with no version info"
"ProFTPD Server" ::DELIM:: "ProFTPD with no version info, short form"
"(\d{4}\-\d\d\-\d\d \d\d:\d\d:\d\d,\d\d\d )?(\S+) proftpd\[\d+\]: error: no valid servers configured" ::DELIM:: "ProFTPD no valid servers configured"
"ProFTPD (\d+\.[^\s]+) Server \((.*)\) \[[[a-f\d].:\]]*" ::DELIM:: "ProFTPD with version info - truncated"
"=\(<\*>\)=-\.:\. \(\( Welcome to Pure-FTPd ([\d.]+) \)\) \.:\.-=\(<\*>\)=-" ::DELIM:: "Pure-FTPd versions <= 1.0.13 (at least as far back as 1.0.11)"
"-{9,10} Welcome to Pure-FTPd (.*)-{9,10}" ::DELIM:: "Pure-FTPd versions >= 1.0.14
"=\(.\*.\)=-\.:\. \(\( Welcome to PureFTPd (\d+\..+) \)\) \.:\.-=\(.\*.\)=-" ::DELIM:: "Older Pure-FTPd versions"
"Serv-U FTP[ -]Server v(\d+\.\S+)( for WinSock)? ready\.*" ::DELIM:: "Serv-U (only runs on Windows)"
"zFTPServer v?(\S+), .*ready\." ::DELIM:: "zftpserver (only runs on Windows)"
"\(vsFTPd (\d+\..+)\)( (.+))?" ::DELIM:: "vsFTPd (Very Secure FTP Daemon)"
"ready, dude \(vsFTPd (\d+\..+): beat me, break me\)" ::DELIM:: "vsFTPd (Very Secure FTP Daemon)"
"vsFTPd ([\d.]+\+ \(ext\.3\)) ready\.\.\." ::DELIM:: "vsFTPd (Very Secure FTP Daemon) extended build (vsftpd.devnet.ru)"
"OOPS: .*vsftp.*" ::DELIM:: "vsFTPd (Very Secure FTP Daemon) error message"
"FileZilla Server( version)? (v)?(\d\.[\w.]+( beta)?).*" ::DELIM:: "FileZilla FTP Server"
"\s*APC FTP server ready\." ::DELIM:: "APC device"
"(\S+) Network Management Card AOS v(\d+\..+) FTP server ready\." ::DELIM:: "APC power/cooling device"
"(\S+) FTP server \(EMC-SNAS: ([^\)]+)\)( \S+)?" ::DELIM:: "EMC Celerra"
"JD FTP Server Ready.*" ::DELIM:: "HP JetDirect printer"
"Check Point FireWall-1 Secure FTP server running on (.+)" ::DELIM:: "Check Point FireWall-1"
"Blue Coat FTP Service" ::DELIM:: "Blue Coat security appliances"
"---freeFTPd 1.0---warFTPd 1.65---" ::DELIM:: "Nepenthes honeypot"
"[^ ]+ IBM FTP CS (V1R\d+) at ([^,]*),.*" ::DELIM:: "IBM z/OS FTP Service"
"FTP server \(IBM 4690 TCP/IP FTP Version 1\.0\) ready\." ::DELIM:: "IBM 4690 FTP Service"
"([^ ]+) NcFTPd Server \(licensed copy\) ready\." ::DELIM:: "NcFTPd Server
"(\S+) DCS-2100 FTP server ready\." ::DELIM:: "D-Link DCS-2100 wireless internet camera"
"Secure Gateway FTP server ready\." ::DELIM:: "Raptor firewall"
"SUN StorEdge (\S+) RAID FTP server ready\." ::DELIM:: "Sun StorEdge disk array"
"AXIS (\S+) ((Fixed Dome )?Network( Fixed Dome)? Camera) ([\d\.]+) .* ready\.?" ::DELIM:: "Axis Network Camera"
"AXIS (\S+) Video (Encoder Blade|Server|Decoder) ([\d\.]+) .* ready\.?" ::DELIM:: "Axis Video encoders/servers"
"AXIS (\S+) .*FTP Network Print Server V?([\d\.]+\S+) .* ready\.?" ::DELIM:: "Axis print servers"
"RICOH Aficio (([MS]P )?\S+) FTP server \(([0-9\.a-zA-Z]+)\) ready.?" ::DELIM:: "Ricoh Aficio multifunction device"
"NRG (([MS]P )?\S+) FTP server \(([0-9\.a-zA-Z]+)\) ready.?" ::DELIM:: "Ricoh NRG multifunction device"
"Xerox Phaser (\S+)" ::DELIM:: "Xerox Phaser Laser Printer"
"XEROX (\d+) Wide Format .*" ::DELIM:: "Xerox Wide Format Series of Printers"
"FUJI XEROX DocuPrint (.*)" ::DELIM:: "FUJI XEROX DocuPrint Series of Printers"
"ET(\S{12}) Lexmark (\S+) FTP Server (\S+) ready\.?" ::DELIM:: "Lexmark printers"
".*Lexmark (\S+) FTP Server (\S+) ready\.?" ::DELIM:: "Lexmark printers"
".*Lexmark (\S+) FTP Server ready\.?" ::DELIM:: "Lexmark printers"
"(Tornado-)?VxWorks \((VxWorks)?([^\)]+)\) FTP server( ready)?" ::DELIM:: "VxWorks with version information"
"Tornado-vxWorks FTP server ready" ::DELIM:: "VxWorks without version information"
"ADC iScale" ::DELIM:: "ADC iScale"
"TASKalfa (\d+c?i) FTP server" ::DELIM:: "Taskalfa Series of Printers"
"SAVIN (\S+) FTP server \((.*)\) ready." ::DELIM:: "SAVIN Printer FTP Server"
"Oce (im\d+) Ver (\S+) FTP server\." ::DELIM:: "OCE IM series Printer"
"Oce (Plotwave\d+) FTP Service \(Version (\S+)\)\." ::DELIM:: "OCE Printer"
"LinkCom Xpress (.*) FTP version ([\d\.]+) ready" ::DELIM:: "MPI Technologies Linkcom Express FTP Server"
"LinkCom Xpress (.*)" ::DELIM:: "MPI Technologies Linkcom Express FTP Server"
"LXKE\S+ IBM Infoprint (\d+) FTP Server (\d+\.\d+\.\d+) ready." ::DELIM:: "IBM Infoprint FTP"
"(Gestetner \S+( \S+)?) FTP server \((.*)\)" ::DELIM:: "Gestetner Printer FTP"
"(Gestetner \S+)" ::DELIM:: "Gestetner Printer FTP"
"EUFSALE MarkNet (\S+) FTP Server (\d+\.\d+\.\d+) ready." ::DELIM:: "Lexmark Marknet Printers FTP"
"ET(\S+) Source Technologies (ST-96\S+) FTP Server (\S+) ready\.?" ::DELIM:: "Source Technologies ST9600 Series Secure Printer"
"ET(\S+) (Pro\d+) Series FTP Server ready\." ::DELIM:: "Lexmark ProXXX Series of Printers"
"ET(\S+) Lexmark Forms Printer (\d+) Ethernet FTP Server (\S+) ready\." ::DELIM:: "Lexmark Forms Printer"
"ET(\S+) TOSHIBA e-STUDIO500S FTP Server (\S+) ready\." ::DELIM:: "Toshiba Printer"
"\S+ TOSHIBA e-STUDIO500S FTP Server (\S+) ready\." ::DELIM:: "Toshiba Printer"
".*Lexmark Optra (\S+) FTP Server (\S+) ready\." ::DELIM:: "Lexmark Optra Printer"
"SHARP (MX-\S+) Ver (\S+) FTP server\." ::DELIM:: "Sharp Printer/Copier/Scanne"
"(FS-\S+MFP\S*?) FTP server\.?" ::DELIM:: "Kyocera Printers"
"(FS-\S+(DN|D|N)) FTP server\.?" ::DELIM:: "Kyocera Printers"
"(ESI-\S+) Version (\S+) ready\." ::DELIM:: "Extended Systems ExtendNet Print Server"
"SATO SATO PRINTER Ver (\S+) FTP server\." ::DELIM:: "SATO Printer"
"Printer FTP (\d+\.\d+\.\d+) ready at (\w{3} \d{2} \d{2}:\d{2}:\d{2})" ::DELIM:: "AMTDatasouth Fastmark M5"
"EFI FTP Print server ready\.$" certainty="0.8" ::DELIM:: "EFI FTP Print Server"
"SHARP (AR-\S+) Ver (\S+) FTP server" ::DELIM:: "Sharp AR Series multifunction device"
"KONICA MINOLTA FTP server ready\.?" ::DELIM:: "Konica Minolta FTP Server"
"(KM\S+) FTP server \(KM FTPD version (\d*(\.\d*))\) ready\.?" ::DELIM:: "Konica Minolta FTP Server"
"(ZBR-\d+) Version (\S+) ready\.?" ::DELIM:: "ZebraNet Print Server FTP"
"(\S+) FTP server \(Version \S+ \w+ \w+ \d{1,2} \d{1,2}:\d{1,2}:\d{1,2} [A-Z]+ (1|2)\d{3}\) ready\.?" ::DELIM:: "Generic/unknown FTP Server found on HP-UX and AIX systems"
"Welcome to the (Cisco )?(TelePresence) ([a-zA-Z\s]*?) ((MSE )?\d+), version (\d+.\d+\(\d+.\d+\)).*?" ::DELIM:: "Cisco TelePresence"
"(\S+) FTP server \((HP|Compaq) Tru64 UNIX Version (\S+)\) ready\.?" ::DELIM:: "Digital/Compaq/HP Tru64 Unix"
"(\S+) FTP server \(Digital UNIX Version (\S+)\) ready\.?" ::DELIM:: "Digital/Compaq/HP Tru64 Unix"
"(\S+) FTP server \(MikroTik ([\d\.]+)\) ready\.?" ::DELIM:: "MikroTik"
"MikroTik FTP server \(MikroTik ([\w.]+)\) ready\.?" ::DELIM:: "MikroTik w/o hostname"
"Welcome to ASUS (B?RT-[\w.-]+) FTP service\." ::DELIM:: "FTPD on an Asus Wireless Access Point/Router"
"Welcome to ASUS (DSL-[\w.-]+) FTP service\." ::DELIM:: "FTPD on a ADSL/VDSL Modem/Wireless Access Point/Router"
"Welcome to ASUS (TM-\w+) FTP service\." ::DELIM:: "FTPD on a T-Mobile branded Asus Wireless Access Point/Router"
"(FRITZ!Box[\w()]+) FTP server ready\." ::DELIM:: "FTPD on an AWM multifunction Modem/Wireless Access Point/Router/VoIP device"
"HES_CPE FTP server \(GNU inetutils ([\w.]+)\) ready\." ::DELIM:: "FTPD on a ZyXEL (Huawei rebrand) WiMax WAP"
"Speedport W ?(\S+) (Typ [A|B] )?FTP Server v([\d.]+) ready$" ::DELIM:: "FTPD on Speedport WLAN/ADSL routers (Deutsche Telekom mfg by misc)"
"DiskStation FTP server ready\." ::DELIM:: "FTPD on a Synology DiskStation NAS"
"Synology FTP server ready\." ::DELIM:: "FTPD on a Synology device"
".Welcome to MyBookLive." ::DELIM:: "FTPD on Western Digital My Book Live NAS"
"Multicraft ([\w.-]+) FTP server" ::DELIM:: "Multicraft FTPD Server"
"bftpd ([\d.]+) at ([[a-f\d].:]+) ready\." ::DELIM:: "Bftpd FTPD Server"
"NASFTPD Turbo station (2.x )?([\w.]+) Server \(ProFTPD\) \[([[a-f\d].:]+)\]" ::DELIM:: "ProFTPD on QNAP Turbo Station NAS"
"Twisted ([\w.]+) FTP Server" ::DELIM:: "Twisted (Python) FTP Server"
"Gene6 FTP Server v(\d{1,2}\.\d{1,2}\.\d{1,2}\s{1,2}\(Build \d{1,2}\)) ready\.\.\." ::DELIM:: "Gene6 FTP Server on Windows"
"([\w.-]+) X2 WS_FTP Server ([\d.]{3,6}\s?\(\d+\))" ::DELIM:: "WS_FTP FTP Server on Windows - X2 variant"
"V2 WS_FTP Server ([\d.]{3,6}\s?\(\d+\))" ::DELIM:: "WS_FTP FTP Server on Windows - V2 variant"
"FTP Server \(ZyWALL (USG\s?[\w-]+)\) \[([[a-f\d]:.]+)\]" ::DELIM:: "ZyXEL Unified Security Gateway"
"Welcome to TP-LINK FTP server" ::DELIM:: "FTPD on a TP-LINK device (no version/host info)"
"ucftpd\((\w{3}\s+\d{1,2} \d{4}-\d\d:\d\d:\d\d)\) FTP server ready\." ::DELIM:: "ucftpd with version"
"ucftpd FTP server ready\." ::DELIM:: "ucftpd without version"
"Welcome to TBS FTP Server\." ::DELIM:: "TBS FTP Server"
"Sofrel (S5[\w]+) SN ([\d-]+) ready. Time is (\d{2}:\d{2}:\d{2} \d{2}\/\d{2}\/\d{2})\." ::DELIM:: "Sofrel Remote Terminal Unit"
"TiMOS-[CB]-([\S]+) cpm\/[\w]+ ALCATEL (SR [\S]+) Copyright .{1,4}" ::DELIM:: "ALCATEL Service Router running TiMOS"
"(\S+) FTP server ready\.?" ::DELIM:: "Generic FTP fingerprint with a hostname"
"(\S+) FTP server \(Version (\d.*)\) ready\.?" ::DELIM:: "Generic FTP fingerprint with a hostname and a version for a generic FTP implementation"
"FTP (server|service)?( is)? ready\.?" ::DELIM:: "Generic FTP fingerprint without a hostname"
"Welcom to ProRat Ftp Server" ::DELIM:: "The FTP server of the ProRat malware"
"((\S+) )?FTP Server \(vftpd ([\d.]+)\) ready\.?" ::DELIM:: "Vermillion FTP Daemon"
"((\S+) )?FTP server \(QVT\/Net ([\d.]+)\) ready\.?" ::DELIM:: "QVT/Net FTP Server"
"0x000b2d00\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Sony H.323 Server"
"0x0400004[23]\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Deutsche Telekom AG H.323 Server"
"0x04000082\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Siemens AG H.323 Server"
"0x04000084\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "ITO Communications H.323 Server"
"0x04000086\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Hauni Elektronik H.323 Server"
"0x04000088\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Dr. Neuhaus Mikroelektronik H.323 Server"
"0x0400008a\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "MPS Software H.323 Server"
"0x0400008b\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Ferrari Electronik GmbH H.323 Server"
"0x0400008c\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "MBP Kommunikationssysteme GmbH H.323 Server"
"0x0400008d\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Schneider Rundfunkwerke AG H.323 Server"
"0x0400008e\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Digitronic Computersysteme GmbH H.323 Server"
"0x0400008f\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "DeTeWe - Deutsche Telephonwerke AG H.323 Server"
"0x0900003d\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Equivalence (OpenH323) H.323 Server"
"0x20000081\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Mediatrix Telecom H.323 Server"
"0x3c000000\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Nokia H.323 Server"
"0x3d00031[0-9a-f]\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Swissvoice H.323 Server"
"0x(82000002|a5000001)\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Ericsson H.323 Server"
"0x8a000003\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Teldat H. Kruszynski, M. Cichocki Sp. J. H.323 Server"
"0xb4000[0-9a-f]00\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "British Telecommunications H.323 Server"
"0xb4001[0-9a-f]00\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "GPT Video Systems H.323 Server"
"0xb4002000\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Marconi Communications H.323 Server"
"0xb4002100\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Indigo Active Vision Systems H.323 Server"
"0xb4002200\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "LiveWorks Limited H.323 Server"
"0xb4002300\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "ATL Telecom Limited H.323 Server"
"0xb4002a00\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Network Alchemy Limited H.323 Server"
"0xb4004200\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Motion Media Technology H.323 Server"
"0xb4004400\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Data Connection H.323 Server"
"0xb4004500\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Westbay Engineers H.323 Server"
"0xb4004600\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "FarSite Communications H.323 Server"
"0xb4004900\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "ImageCom H.323 Server"
"0xb4004d00\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Madge Networks H.323 Server"
"0xb4005200\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Ridgeway Systems and Software H.323 Server"
"0xb4005300\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "SpliceCom H.323 Server"
"0xb4005400\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "TeleWare H.323 Server"
"0xb4005600\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Vegastream H.323 Server"
"0xb4006600\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Westell H.323 Server"
"0xb4006900\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "ISDN Communications H.323 Server"
"0xb400c000\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Codian H.323 Server"
"0xb500000[02]\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Compression Labs H.323 Server"
"0xb5000001\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "PictureTel H.323 Server"
"0xb5000003\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "VTEL H.323 Server"
"0xb5000005\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "ERIS H.323 Server"
"0xb5000007\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "AT&T Worldworx H.323 Server"
"0xb5000009\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "VideoServer H.323 Server"
"0xb500000b\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "3Com Corporation H.323 Server"
"0xb500000c\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Clarent Corporation H.323 Server"
"0xb500000d\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Genesys Telecommunications Labs Inc H.323 Server"
"0xb500000e\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "C-Phone Corporation H.323 Server"
"0xb500000f\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Science Dynamics Corporation H.323 Server"
"0xb5000010\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "AT&T Starpoint H.323 Server"
"0xb5000011\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Netscape Conference H.323 Server"
"0xb5000012\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Cisco H.323 Server"
"0xb5000013\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Cirilium, Inc. H.323 Server"
"0xb5000014\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Ascend Communications, Inc. H.323 Server"
"0xb5000015\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "RADVision, Inc. H.323 Server"
"0xb5000016\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Objective Communications H.323 Server"
"0xb5000017\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "VocalTec Communications, Inc. H.323 Server"
"0xb5000018\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Serome Technology, Inc. H.323 Server"
"0xb5000019\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Aspect Communications H.323 Server"
"0xb500001a\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Cintech Tele-Management H.323 Server"
"0xb500001b\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Philips Video Conferencing Systems H.323 Server"
"0xb500001c\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Vertical Networks, Inc. H.323 Server"
"0xb500001d\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Syndeo Corp. H.323 Server"
"0xb500001e\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Telxon Corporation H.323 Server"
"0xb500001f\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Network Equipment Technologies H.323 Server"
"0xb5000020\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Pagoo, Inc. H.323 Server"
"0xb5000021\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "General Dynamics H.323 Server"
"0xb5000022\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Vanguard Managed Solutions H.323 Server"
"0xb5000023\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "TeleStream Technologies, Inc. H.323 Server"
"0xb5000024\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Spirent Communications H.323 Server"
"0xb5000025\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "CrystalVoice Communications H.323 Server"
"0xb5000026\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Xiph.org H.323 Server"
"0xb5000027\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "NACT Telecommunications H.323 Server"
"0xb5000028\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "AudioCodes, Inc. H.323 Server"
"0xb5000120\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "AT&T - GBCS H.323 Server"
"0xb5000168\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Leadtek Research Inc. H.323 Server"
"0xb5000247\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Lucent Technologies H.323 Server"
"0xb500029a\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Symbol Technologies Inc. H.323 Server"
"0xb5000378\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "StarVox, Inc. H.323 Server"
"0xb50003f7\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Inari Inc. H.323 Server"
"0xb5000727\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Quintum Technologies, Inc. H.323 Server"
"0xb5000918\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Netrix Corporation H.323 Server"
"0xb500101e\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "SysMaster Corporation H.323 Server"
"0xb5001a1a\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Alpha Telecom, Inc. U.S.A. H.323 Server"
"0xb5002331\:(.*)\:Release\s[\s-]*(\d+\.+\d+\.*\d*).*" ::DELIM:: "ViaVideo/PolyCom H.323 Server"
"0xb500301c\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Congruency, Inc. H.323 Server"
"0xb5003039\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "MiBridge Inc. H.323 Server"
"0xb5003838\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "8x8 Inc. H.323 Server"
"0xb5004147\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Agere Systems H.323 Server"
"0xb5004153\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Artisoft Inc. H.323 Server"
"0xb5004156\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Avaya H.323 Server"
"0xb5004242\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "IBM H.323 Server"
"0xb5004257\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "StreamComm H.323 Server"
"0xb500(4c54|600d)\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Lucent Technologies H.323 Server"
"0xb5004d47\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "MediaGate H.323 Server"
"0xb5004e54\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Nortel Networks H.323 Server"
"0xb5005243\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Siemens Business Communication Systems H.323 Server"
"0xb500534c\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Microsoft H.323 Server"
"0xb5008080\:(.*)\:.*?(\d*\.*\d*\.*\d*).*" ::DELIM:: "Intel H.323 Server"
"laserjet (.*)( series)?" ::DELIM:: "HP JetDirect Printer"
"(designjet \S+)" ::DELIM:: "HP Designjet printer"
"Xerox ColorQube (\S+)" ::DELIM:: "Xerox ColorQube Multifunction Printer"
"Brother (.+)" ::DELIM:: "Brother Printer"
"(iR ?\S+)" ::DELIM:: "Canon iR multifunction device"
"(Dell (Color Laser |Laser Printer )?|(Color Laser |Laser Printer ))(\d+(n|cn|dn|cdn))( Color Laser| Laser Printer)?" ::DELIM:: "Dell Laser Printer"
"Dell (\d+(n|cn|dn|cdn)) MFP" ::DELIM:: "Dell Laser multifunction device"
"HP (\S+ Digital Sender)" ::DELIM:: "HP Digital Sender scanner"
"(IBM )?Infoprint( Color)? (\S+)" ::DELIM:: "IBM Infoprint Printer"
"KM-(.*)" ::DELIM:: "Konica Minolta printer"
"(FS-\S+MFP\S*)" ::DELIM:: "Kyocera Mita Multifunction device"
"(FS-(C)?\d+(D|DN))" ::DELIM:: "Kyocera Mita Printer"
"(TASKalfa \S+)" ::DELIM:: "Kyocera Mita TASKalfa multifunction device"
"Lexmark (.*)" ::DELIM:: "Lexmark JetDirect printer"
"Oce (fx[^\s:]+):.*" ::DELIM:: "Oce FX series multifunction device"
"Oce (VL\S+):.*" ::DELIM:: "Oce VarioLink multifunction device"
"OceIGI MX-\S+" ::DELIM:: "Oce-acquired IGI printer"
"Imagistics (im\S+) (.+)" ::DELIM:: "Oce IM series multifunction device"
"OKI (C\d+)\S*" ::DELIM:: "Okidata color printer"
"OKI (MC\d+)\S*" ::DELIM:: "Okidata multifunction device"
"RICOH ((Aficio|MP|SP) .*)" ::DELIM:: "Ricoh Aficio Printer"
"NRG ([MS]P \S+)" ::DELIM:: "Ricoh NRG printer"
"Gestetner (MP\S+/DSc\S+)" ::DELIM:: "Ricoh Gestetner multifunction device"
"HYDRA" ::DELIM:: "RSI Hydra printer"
"Savin (\S+)" ::DELIM:: "Savin Printer"
"Samsung ((SCX|CLX)-\S+) Series" ::DELIM:: "Samsung multifunction device"
"Samsung ((ML|CLP)-\S+) Series" ::DELIM:: "Samsung printer"
"SHARP (\S+-\S+) .*" ::DELIM:: "Sharp Printer"
"Source Technologies (\S+)" ::DELIM:: "Source Technologies Printer"
"TOSHIBA (e-STUDIO\S+)(\s+.*)?" ::DELIM:: "Toshiba e-STUDIO multifunction device"
"(ID=)?Xerox (Phaser \S+)" ::DELIM:: "Xerox Phaser Printer"
"Xerox (WorkCentre .*)" ::DELIM:: "Xerox Workcentre Printer"
"^(XC\S+)" ::DELIM:: "Xerox XC Printer"
"^(DC\S+)" ::DELIM:: "Xerox DocuColor Printer"
"(EX\d+-\d+)" ::DELIM:: "Xerox EX Print Server, powered by EFI Fiery"
"(CFCLIENT_[^=]+|CFGLOBALS|CFID|CFTOKEN)=.*" ::DELIM:: "ColdFusion"
"(Apache)=[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.([0-9]+);.*" ::DELIM:: "Apache"
"(JServSessionIdroot)=.*" ::DELIM:: "Apache JServ"
"(ATG_SESSION_ID|DYN_USER_CONFIRM|DYN_USER_ID)=.*" ::DELIM:: "ATG Dynamo"
"(WebLogicSession)=[^!]+![^!]+!([0-9]+);.*" ::DELIM:: "BEA WebLogic (with timestamp)"
"(WebLogicSession)=.*" ::DELIM:: "BEA WebLogic (no timestamp)"
"(BCSI-CSC[0-9A-Za-z]+)=.*" ::DELIM:: "BlueCoat Proxy"
"(CAKEPHP)=.*" ::DELIM:: "CakePHP http://www.cakephp.org/"
"(ARPT)=([A-Z]+)([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})([A-Z]+).*" ::DELIM:: "Cisco 11000 Series Content Service Switch (CSS)"
"(ARPT)=.*" ::DELIM:: "Cisco 11000 Series Content Service Switch (CSS)"
"(st8id)=.*" ::DELIM:: "Citrix Application Protection System, Enterprise"
"(EktGUID|ecm)=.*" ::DELIM:: "Ektron CMS400.net"
"(BIGipServer([^=]+))=.*" ::DELIM:: "F5 BIG-IP LTM"
"(BigIPCookie)=.*" ::DELIM:: "F5 BIG-IP LTM"
"(SERVERID)=([A-Za-z0-9\-_]+)" ::DELIM:: "HAProxy"
"(AMWEBJCT!([^!]+)!([^=]+))=.*" ::DELIM:: "IBM Tivoli Access Manager for e-business WebSEAL"
"(PD-S-SESSION-ID|PD-H-SESSION-ID|PD_STATEFUL_[^=]+)=.*" ::DELIM:: "IBM Tivoli Access Manager for e-business WebSeal"
"(IBMCBR)=.*" ::DELIM:: "IBM WebSphere Load Balancer"
"(mbfcookie(\[lang\])?)=.*" ::DELIM:: "Joom!Fish"
"(MSCSAuth|MSCSProfile)=.*" ::DELIM:: "Microsoft Commerce Server
"(ASPSESSIONID[A-Z]+|ASP\.NET_SessionId|\.ASPXANONYMOUS)=.*" ::DELIM:: "Microsoft IIS (ASP.NET)
"(AlteonP)=.*" ::DELIM:: "Nortel Alteon Web Switch"
"((SS_X_)?CSINTERSESSIONID)=.*" ::DELIM:: "OpenMarket/FatWire Content Server (www.fatwire.com)"
"(parkinglot)=.*" ::DELIM:: "Oversee Webserver"
"(PHPSESSID|PHPSESSION)=.*" ::DELIM:: "PHP"
"(RMID)=.*" ::DELIM:: "RealMedia OpenAdStream"
"(RoxenUserID)=.*" ::DELIM:: "Roxen WebServer"
"(_sn)=.*" ::DELIM:: "Siebel CRM"
"(iPlanetUserId)=.*" ::DELIM:: "Sun iPlanet"
"(NSES40Session)=.*" ::DELIM:: "Netscape Enterprise Server (subsequently iPlanet Web Server"
"(gx_session_id|JROUTE)=.*" ::DELIM:: "Sun Java System Application Server (formerly iPlanet Application Server"
"(fe_typo_user)=.*" ::DELIM:: "TYPO3 CMS"
"(SaneID)=.*" ::DELIM:: "Unica NetTracker"
"(__utm[a-z])=.*" ::DELIM:: "Urchin Tracking Module"
"(vgncontext|vgnvisitor|ssuid)=.*" ::DELIM:: "Vignette"
"(wgSession)=.*" ::DELIM:: "Plain Black WebGUI"
"(WEBTRENDSID|WEBTRENDS_ID)=.*" ::DELIM:: "WebTrends"
"(_ZopeId)=.*" ::DELIM:: "Zope"
"(portal)=([0-9]+\.[0-9]+\.[0-9]+).*" ::DELIM:: "This is the default OracleAS Portal cookie name
"Compaq-HMMD=[^;]+;.*" ::DELIM:: "HP System Management Homepage (SMH)"
"MoodleSession=" ::DELIM:: "Moodle"
"Stronghold/(\d\.\d) Apache/([012][\d.]*)\s*(.*)" ::DELIM:: "Red Hat Stronghold Enterprise Apache"
"Apache/\d" ::DELIM:: "Apache returning only its major version number"
"Apache" ::DELIM:: "Apache returning no version information"
"Apache(-AdvancedExtranetServer)?(/([012][\d.]*)\s*(.*))?" ::DELIM:: "Apache"
"Check Point SVN foundation" ::DELIM:: "Check Point Firewall NG"
"Microsoft-IIS/([1234]\.0)" ::DELIM:: "Microsoft IIS 1.0 - 4.0 runs on Windows NT 4.0"
"Microsoft-IIS/5.0" ::DELIM:: "Microsoft IIS 5.0 runs on Windows 2000"
"Microsoft-IIS/5.1" ::DELIM:: "Microsoft IIS 5.1 runs on Windows XP"
"Microsoft-IIS/6.0" ::DELIM:: "Microsoft IIS 6.0 runs on Windows Server 2003 (and Windows XP x64)"
"Microsoft-IIS/7.0" ::DELIM:: "Microsoft IIS 7.0 runs on Windows Server 2008 (and Windows Vista)"
"Microsoft-IIS/7.5" ::DELIM:: "Microsoft IIS 7.5 runs on Windows Server 2008 R2 (and Windows 7)"
"Microsoft-IIS/8.0" ::DELIM:: "Microsoft IIS 8.0 runs on Windows Server 2012 (and Windows 8)"
"Microsoft-IIS/8.5" ::DELIM:: "Microsoft IIS 8.5 runs on Windows Server 2012 R2 (and Windows 8.1)"
"Microsoft-IIS/([\d\.]+)" ::DELIM:: "Microsoft IIS new, unknown version"
"Microsoft-IIS" ::DELIM:: "Microsoft IIS, no version information"
"MS .NET Remoting, MS .NET CLR (\d+\.\d+\.\d+\.\d+)" ::DELIM:: "Microsoft .NET Remoting and Common Language Runtime (CLR)"
"Microsoft-WinCE/(\d\.\d+)" ::DELIM:: "Windows CE embedded devices, including HP iPAQ,
"Microsoft-PWS/(\d\.\d+)" ::DELIM:: "Microsoft Personal Web Server runs on Windows 9x, ME, etc."
"Microsoft-PWS-95/(\d\.\d+)" ::DELIM:: "Microsoft Personal Web Server for Windows 95"
"Apache[ -]Coyote/(\d\.\d)" ::DELIM:: "HTTP connector for Apache Tomcat to run as a standalone
"Servlet [\d\.]+; JBoss-(\S+) \(build: .*\)/Tomcat-(\S+)" ::DELIM:: "JBoss with embedded tomcat"
"Servlet [\d\.]+; Tomcat-(\S+)/JBoss-(\S+) \(build: .*\)" ::DELIM:: "JBoss with embedded tomcat"
"Servlet [\d\.]+; JBoss-([\S]+)( \(build.*)?/JBossWeb-(\S+)" ::DELIM:: "JBoss with JBossweb"
"Servlet\/[\d\.]+; JBossAS-(.*)" ::DELIM:: "JBoss AS"
"JBoss-EAP\/(\d+)" ::DELIM:: "JBoss EAP"
"Apache Tomcat/(\d\.[\d.]+)(-LE-jdk14)? \(HTTP/1.1 Connector\)" ::DELIM:: "HTTP connector for Apache Tomcat to run as a standalone
"Tomcat Web Server/(\d\.[\dA-Z.]+)( Final)?(\s\(([^\)]+)\))?" ::DELIM:: "HTTP connector for Apache Tomcat to run as a standalone
"Tomcat/(\S+)" ::DELIM:: "Apache tomcat with minimal version information"
"PHP/(\S+)" ::DELIM:: "PHP"
"PHP/(\S+)\s+ZendServer/\S+" ::DELIM:: "PHP with ZendServer"
"Oracle Application Server Containers for J2EE 10g \(([\d.]+)\)" ::DELIM:: "Oracle Application Server Containers for J2EE 10g"
"Oracle Containers for J2EE" ::DELIM:: "Oracle Application Server Containers for J2EE"
"Oracle Application Server/10g \(([\d.]+)\) Apache/([12][\d.]+)\s*(.*)" ::DELIM:: "Oracle Application Server 10g with Apache info (powered by Apache)"
"Oracle-Application-Server-\d+[ig]([ /]([\d.]+) (\(.*\)|Oracle-HTTP-Server\s*(.*)))?" ::DELIM:: "Oracle Application Server 10g (powered by Apache)"
"Oracle9iAS/([\d.]+) Oracle HTTP Server\s*(.*)" ::DELIM:: "Oracle 9i Application Server"
"Oracle HTTP Server Powered by Apache/([12][\d.]*)\s*(.*)" ::DELIM:: "Oracle HTTP Server (powered by Apache)"
"Oracle HTTP Server Powered by Apache" ::DELIM:: "Oracle HTTP Server (powered by Apache)"
"HP Apache-based Web Server/([012][\d.]*)\s*\(Unix\)\s*(.*)" ::DELIM:: "Apache running on HP-UX"
"CompaqHTTPServer/([0-9.]*)( HP System Management Homepage(/.*)?)?" ::DELIM:: "HP/Compaq HTTP Server"
"HPSMH" ::DELIM:: "HP System Management Homepage (SMH)"
"eHTTP[/ ]v?(\d+\.\d+)" ::DELIM:: "HTTP Server present on seemingly only HP ProCurve network devices"
"(BBC \d+\.\d+\.\d+\.?\d*; )?(com.hp.openview.)?[c|C]oda (\d+\.\d+\.\d+\.?\d*)" ::DELIM:: "HP Openview Coda (Communications Daemon)"
"BBC \d+\.\d+\.\d+\.?\d*; ovbbcrcp (\d+\.\d+\.\d+\.?\d*)" ::DELIM:: "OpenView Reverse Channel Proxy (RCP)"
"(BBC \d+\.\d+\.\d+\.?\d*; )?com.hp.openview.bbc.LLBServer (\d+\.\d+\.\d+\.?\d*)" ::DELIM:: "HP Openview LLBServer (Local Location Broker)"
"BBC \d+\.\d+\.\d+; ovbbccb (\d+\.\d+\.\d+)" ::DELIM:: "OpenView Communication Broker (ovbbccb)"
"BBC \d+\.\d+\.\d+; ovbbccb unknown version" ::DELIM:: "OpenView Communication Broker (ovbbccb) with no version"
"UOS" ::DELIM:: "HTTP Server that appears unique to Managment Console on HP TippingPoint IPS Devices"
"Helix Server Version ([0-9.]*) \(win32\) \(RealServer compatible\)" ::DELIM:: "RealMedia Helix Server"
"Helix Server Version ([0-9.]*) \(linux-\S+\) \(RealServer compatible\)" ::DELIM:: "RealMedia Helix Server"
"Cougar/([0-9.]*)" ::DELIM:: "Windows Media Services (older versions)"
"WMServer/([0-9.]*)" ::DELIM:: "Windows Media Services (newer versions)"
"Microsoft-HTTPAPI/([0-9\.]*)" ::DELIM:: "Generic Microsoft HTTP service"
"ASP.NET" ::DELIM:: "Something written in ASP.NET"
"[Xx]itami" ::DELIM:: "Xitami web server"
"VCS-VIDOS-NVR" ::DELIM:: "Bosch VCS VIDOS-NVR network video recorder"
"HeiTel GmbH Web Server \[\S+\]" ::DELIM:: "HeiTel Digital Video Recorder"
"MiniServ/([0-9.]*)" ::DELIM:: "mini_httpd"
"IBM HTTP Server/(V\d+R\d+M\d+)" ::DELIM:: "IBM HTTP server running on AS/400"
"(IBM_HTTP_Server|IBM_HTTP_SERVER)/([\w.-]+)\s+Apache/([12][\d.]+)\s*(.*)" ::DELIM:: "IBM HTTP Server"
"(IBM_HTTP_SERVER|IBM-HTTP-SERVER)/(\S+)( \(\S+\))?" ::DELIM:: "IBM HTTP Server with hardly useful version info"
"(IBM_HTTP_SERVER|IBM-HTTP-SERVER)" ::DELIM:: "IBM HTTP Server with no version info"
"Sun[ -]Java[ -]System[ /]Application[ -]Server( \d\.[\d_]+)?" ::DELIM:: "Sun Java System Application Server (formerly iPlanet Application Server,
"Sun[ -]Java[ -]System[ /]Application[ -]Server Platform Edition( \d\.[\d_]+)?" ::DELIM:: "Sun Java System Application Server (formerly iPlanet Application Server,
"Sun GlassFish Enterprise Server v(\S+)" ::DELIM:: "Glassfish with version information"
"GlassFish" ::DELIM:: "Glassfish without version information"
"Netscape-Enterprise/(\d+\.[\w\s.]+)" ::DELIM:: "Netscape Enterprise Server (subsequently iPlanet Web Server,
"(Sun-Java-System-Web-Server|Sun-ONE-Web-Server)/(\d\.[\d_]+)" ::DELIM:: "Sun Java System Web Server (formerly Netscape Enterprise Server, iPlanet Web
"iPlanet-Web-Proxy-Server/(.*)" ::DELIM:: "iPlanet WebProxy Server (subsequently Sun ONE WebProxy Server,
"Sun-ONE-Web-Proxy-Server/(.*)" ::DELIM:: "Sun ONE WebProxy Server (formerly iPlanet WebProxy Server,
"Sun-Java-System-Web-Proxy-Server/([^.]+\.[^.]+\.[^.]+)" ::DELIM:: "Sun Java System Web Proxy Server (formerly iPlanet WebProxy Server,
"Sun-Java-System-Web-Proxy-Server/(4\.\d+)" ::DELIM:: "Sun Java System Web Proxy Server (formerly iPlanet WebProxy Server,
"Sun-ILOM-Web-Server/(\d\.[\d._]+)" ::DELIM:: "Sun Integrated Lights Out Manager (ILOM) usually
"HP-iLO-Server/([\S]+)" ::DELIM:: "HP iLo"
"Jetty/(\d+\.[\d.]+)( \((.*)\))?" ::DELIM:: "Mort Bay Jetty"
"Jetty/(\S+) \(.*" ::DELIM:: "Jetty"
"Jetty\((\S+)\)" ::DELIM:: "Mort Bay Jetty"
"[Ss]quid/(\d+\.[\w.]+)" ::DELIM:: "Squid Web "
"thttpd/(\d\.[\w.]+)-MX\s*.*" ::DELIM:: "thttpd with SSL support"
"thttpd(/(\d\.[\w.]+)\s*.*)?" ::DELIM:: "thttpd"
"lighttpd(/(\d[\d.]+))?.*" ::DELIM:: "Lighttpd"
"nginx/(\S+)" ::DELIM:: "nginx with version info"
"nginx" ::DELIM:: "nginx without version info"
"Lotus(-Domino)?(/|/0|/Release)?" ::DELIM:: "IBM Lotus Notes/Domino with no useful version info"
"Lotus(-Domino)?/(Release-?)?([4-7][\d.]+)\s*(.*)" ::DELIM:: "IBM Lotus Notes/Domino with version info"
"WebLogic (WebLogic )?Server (\d+\.\d+(\s+SP\d+)?)\s+.*" ::DELIM:: "BEA WebLogic"
"WebSphere Application Server/(\d+\.\d+)" ::DELIM:: "IBM WebSphere"
"Resin/(\S+)" ::DELIM:: "Caucho Resin"
"Ipswitch-IMail/(\d\.\d+)" ::DELIM:: "Ipswitch IMail Server"
"Abyss/(\d\.[\d.]+)-X1-Win32 AbyssLib/(\d\.[\d.]+)" ::DELIM:: "Aprelium Technologies Abyss Web Server X1
"Abyss/(\d\.[\d.]+)-X2-Win32 AbyssLib/(\d\.[\d.]+)" ::DELIM:: "Aprelium Technologies Abyss Web Server X2
"Microsoft (Commerce Server\s*(2002|2007)?, (Enterprise|Standard|Evaluation|Developer) Edition)" ::DELIM:: "Microsoft Commerce Server"
"NetWare-Enterprise-Web-Server/(\d+\.\d+)" ::DELIM:: "NetWare Enterprise Web Server (runs on NetWare 5.1)"
"NetWare HTTP Stack" ::DELIM:: "NetWare HTTP stack (runs on 6.0 and 6.5)"
"Novell-HTTP-Server/3.1R1" ::DELIM:: "NetWare HTTP Server (runs on NetWare 4.11)"
"Novell-HTTP-Server/2.51R1" ::DELIM:: "NetWare HTTP Server (runs on NetWare 4.1)"
"Netscape-FastTrack/(\d+\.[\w\s.]+)" ::DELIM:: "Netscape FastTrack Server"
"Netscape-Commerce/(\d+\.[\w\s.]+)" ::DELIM:: "Netscape Commerce Server"
"SAP J2EE Engine/(\d+\.\d+)" ::DELIM:: "SAP NetWeaver Web AS (Application Server)"
"SonicWALL (SSL-VPN( (\d+))?) Web Server\.?" ::DELIM:: "SonicWALL SSL-VPN device"
"SonicWALL" ::DELIM:: "SonicWALL device"
"NetCache appliance \(NetApp/+(\d+\.\d+[\w.]+)\)" ::DELIM:: "NetCache appliance (product line formerly owned by Network Appliances,
"NetApp/+(.*)" ::DELIM:: "NetApp file servers"
"BlueCoat-Security-Appliance" ::DELIM:: "Blue Coat security appliance"
"(BigIP|BIG-IP)" ::DELIM:: "F5 BIG-IP"
"Foundry Networks(/(\d+\.\d+))?" ::DELIM:: "Foundry Networks device (though not sure which)"
"HP-Chai(Server|SOE)/(\d+\.\d+)" ::DELIM:: "HP Printer running the Chai embedded web server"
"HP HTTP Server; (Hewlett-Packard )?HP ((\S+) \S+)" ::DELIM:: "HP Printer"
"(Allegro-Software-)?RomPager/\s*(\S+)" ::DELIM:: "Embedded HTTP server used by many vendors and device
"YAMAHA-RT" ::DELIM:: "Yamaha RT series routers"
"(Canon Http|CANON HTTP) Server (Ver)?(\d+\.\d+)" ::DELIM:: "Canon device running embedded web server, though
".*Linksys.*" ::DELIM:: "Linksys Wireless Access Point"
"cisco-IOS" ::DELIM:: "Cisco IOS"
"cisco-IOS/([^\s]+) HTTP-server/.*" ::DELIM:: "Cisco IOS with version information"
"Cisco AWARE (.*)" ::DELIM:: "Cisco ASA"
"DesktopAuthority/(.*)" ::DELIM:: "ScriptLogic DesktopAuthority"
"Agent-ListenServer-HttpSvr/.*" ::DELIM:: "McAfee ePolicy Orchestrator"
"EWS-NIC\d/(\S+)" ::DELIM:: "Xerox Embedded Web Server (EWS)"
"Adaptec ASM (\S+)" ::DELIM:: "Adaptec - Adaptec Storage Manager (runs on Windows Only)"
"JRun Web Server" ::DELIM:: "Macromedia (formerly Allaire) JRun"
"(Raptor )?Simple, Secure Web Server ([\d.]+)" ::DELIM:: "Symantec Raptor Firewall"
"NS_(\d\.\d)" ::DELIM:: "Citrix NetScaler"
"Rumpus" ::DELIM:: "Rumpus FTP Server, Web File Manager interface"
"servermgrd" ::DELIM:: "Mac OS X Server administrative daemon"
"(RMC Webserver|RAC_ONE_HTTP) (\d\.\d)" ::DELIM:: "Dell Remote Access Controller"
"Xerox_MicroServer/Xerox11" ::DELIM:: "Xerox Document Centre"
"TSM_HTTP/\d\.\d" ::DELIM:: "IBM Tivoli Storage Manager"
"D-Link MiniAVServer" ::DELIM:: "D-Link embedded web server for web cams"
"ListManagerWeb/(\S+) .*" ::DELIM:: "Lyris ListManager"
"kHTTPd (\S+)" certainty="0.50" ::DELIM:: "TUX web server, an in-kernel Linux HTTP Accelerator"
"RealVNC/(\S+)" ::DELIM:: "RealVNC built-in webserver"
"(Agranat|Conexant|(Globespan)?Virata)-EmWeb/(.*)" ::DELIM:: "EmWeb variants"
"NSC/\S+ \(JVM\)" ::DELIM:: "Rapid7 NSC"
"Polycom SoundPoint IP Telephone HTTPd" ::DELIM:: "Polycom Soundpoint IP Telephone"
"4D_WebSTAR_S/2004" ::DELIM:: "4D 4th Dimension 2004"
"4D_WebSTAR_S/5.3.2 \(MacOS X\)" ::DELIM:: "Kerio WebSTAR"
"SentinelProtectionServer/((\d+\.)*\d+)" ::DELIM:: "Embedded web server in SafeNet's memory key dongles."
"SentinelKeysServer/((\d+\.)*\d+)" ::DELIM:: "Embedded web server in SafeNet's memory key dongles."
"CherryPy/((\d+\.)*\d+)" ::DELIM:: "Web server component of CherryPy web application framework."
"TornadoServer/((\d+\.)*\d+)" ::DELIM:: "Tornado Python web framework and asynchronous networking library."
"SimpleHTTP/((\d+\.)*\d+)\s*Python/((\d+\.)*\d+)" ::DELIM:: "SimpleHTTPRequestHandler Python class is a simple HTTP request handler."
"HP Web Jetadmin/((\d+\.)*\d+)\s*(.*)" ::DELIM:: "Apache variant for web access to HP printers."
"HP Web Jetadmin ([\d\.]+)( \([^\)]+\))?" ::DELIM:: "HP printers, perhaps Apache, but we can't say for sure"
"Citrix Web PN Server" ::DELIM:: "Citrix Web PN (Program Neighborhood) Server is an HTTP server used by Citrix products"
"Lotus Expeditor Web Container/((\d+\.)*\d+)" ::DELIM:: "Expeditor is a framework used by IBM in many products in the Lotus brand, such as Sametime and Notes."
"GoAhead-Webs" ::DELIM:: "An embedded web server developed by GoAhead Software, which was later acquired by Oracle."
"Mbedthis-Appweb/((\d+\.)*\d+)" ::DELIM:: "An embedded web server for hosting dynamic web applications."
"Embedthis-http" ::DELIM:: "An embedded web server for hosting dynamic web applications."
"Avaya CMBE/((\d+\.)*\d+)" ::DELIM:: "Web server for Avaya Aura Communication Manager Branch, a SIP-based communications platform."
"Rapid Logic/((\d+\.)*\d+)" ::DELIM:: "Embedded web server by Rapid Logic, which was acquired by Wind River."
"WindRiver-WebServer/((\d+\.)*\d+)" ::DELIM:: "Wind River HTTP server"
"Sophos Email Appliance" ::DELIM:: "Embedded web server for a rack-mounted email appliance that blocks spam and malware."
"CUPS/((\d\.)+\d+)" ::DELIM:: "Server for the CUPS web interface."
"TwistedWeb/((\d\.)+\d+)" ::DELIM:: "An HTTP server, HTML templating engind, and HTTP client library from Twisted Labs."
"mini_httpd/((\d+\.)*\d+) \S*" ::DELIM:: "A small HTTP server"
"thin ((\d+\.)*\d+) codename .+" ::DELIM:: "A Ruby-based web server."
"Avocent DSView \d+/((\d+\.)*\d+)" ::DELIM:: "Web server interface for controlling data centers."
"Mongrel ((\d+\.)*\d+)" ::DELIM:: "Ruby-based web server and HTTP library."
"Microplex emHTTPD/((\d+\.)*\d+)" ::DELIM:: "Embedded web server used by Microplex."
"UPS_Server/((\d+\.)*\d+)" ::DELIM:: "An embedded web server used for UPS management; primarily by Eaton, but also by APC."
"JC-HTTPD/((\d+\.)*\d+)" ::DELIM:: "An embedded web server, used notably by Oki and Kyocera in printers."
"JC-SHTTPD/((\d+\.)*\d+)" ::DELIM:: "An embedded web server."
"Oracle XML DB/Oracle\S+ Enterprise Edition Release ((\d+\.)*\d+) - Production" ::DELIM:: "Web server providing web services for Oracle's XML DB."
"sfcHttpd" ::DELIM:: "Server for HTTP interface to sfcb, a lightweight CIM server.
"PanWeb Server/ -" ::DELIM:: "HTTP and HTTPS server found on Palo Alto Networks devices"
"Ews/((\d+\.)*\d+)" ::DELIM:: "IBM Network Printer Manager."
"\$ProjectRevision: 4.0.2.38 \$" ::DELIM:: "This banner is seen on some HP LaserJet printers."
"WEBrick/([\d\.]+) .*" ::DELIM:: "WEBrick default setup"
"Aspen/(\S+)" ::DELIM:: "Aspen web server"
"Boa/([\d\.]+\S*)" ::DELIM:: "Boa web server"
"Cross Web Server" ::DELIM:: "Web server found on DVR and webcam servers sourced from HiSilicon"
"(Hikvision|DVRDVS)-Webs" ::DELIM:: "Web server found on DVR and webcam servers sourced from Hikvision"
"NET-DK[/ ](\d+\.\d+)" ::DELIM:: "Web server found on ARRIS cable modems"
"Web-Server/(\d+\.+\d+)" ::DELIM:: "Obfuscated web server -- assert nothing."
"AkamaiGHost" ::DELIM:: "Akamai Global Host"
"GFE/((\d+\.)*\d+)" ::DELIM:: "Google Front End for apps running on Google services."
"CloudFront" ::DELIM:: "Amazon CloudFront web load balancer endpoint"
"cloudflare-nginx" ::DELIM:: "CloudFlare web load balancer endpoint"
"gSOAP/([\d\.]+)" ::DELIM:: "gSOAP"
"QTSS\/([\d\.]+) \(Build\/[\d\.]+; Platform\/MacOSX; Release\/Panther" ::DELIM:: "QTSS on OS X 10.3"
"QTSS\/([\d\.]+) \(Build\/[\d\.]+; Platform\/MacOSX; Release\/Mac OS X" ::DELIM:: "QTSS OS X"
"SEPM" ::DELIM:: "Symantec Endpoint Protection Manager"
"Intel\(R\) Active Management Technology\s(\d+\.\d+\.\d+\.\d+|\d+\.\d+\.\d+|\d+\.\d+)" ::DELIM:: "Intel(R) Active Management Technology (AMT) with a version"
"(AMT|Intel\(R\) Active Management Technology)" ::DELIM:: "Intel(R) Active Management Technology (AMT) without a version"
"Intel\(R\) Standard Manageability\s(\d+\.\d+\.\d+\.\d+|\d+\.\d+\.\d+|\d+\.\d+)" ::DELIM:: "Intel(R) Standard Manageability"
"(Basic|Digest) realm=.[iI]RMC(@(IRMC[0-9a-fA-F]{6}))?..*" ::DELIM:: "Fujitsu Siemens Primergy with BMC RemoteView on an iRMC card"
"(Basic|Digest) realm=.access." ::DELIM:: "Cisco IOS 11.x"
"(Basic|Digest) realm=.level[ _]15[ _]or[ _]view[ _]access." ::DELIM:: "Cisco IOS 12.x"
"(Basic|Digest) realm=.level[ _]\d\d?[ _]access." ::DELIM:: "Cisco IOS 12.x"
"(Basic|Digest) realm=.FW-1. Reason: no user Server ." ::DELIM:: "Check Point FireWall-1"
"(Basic|Digest) realm=.APC Management Card." ::DELIM:: "APC device"
"(Basic|Digest) realm=.SpeedTouch \(([0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2})\)." ::DELIM:: "Thomson SpeedTouch xDSL routers"
"(Basic|Digest) realm=.SpeedTouch., nonce=.[0-9A-Z]+:([0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}):\d+:\d+., qop=.auth." ::DELIM:: "Thomson SpeedTouch xDSL routers"
"(Basic|Digest) realm=.ST (\d+) R 5.x Telecom Italia., nonce=.[0-9A-Z]+:([0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}):\d+:\d+., qop=.auth." ::DELIM:: "Thomson SpeedTouch xDSL routers"
"(Basic|Digest) realm=.(SmartAX )?(MT\d+[^ ]*)( ADSL Router)?." ::DELIM:: "Huawei xDSL routers"
"(Basic|Digest) realm=.WRT54G." ::DELIM:: "Linksys WRT54G wireless access point
"(Basic|Digest) realm=.(TD-[VW8][A-Z0-9]+)(| \d+\.\d+)." ::DELIM:: "TP-LINK SoHo Router"
"(Basic|Digest) realm=.(TD8[A-Z0-9]+)." ::DELIM:: "TP-LINK SoHo Router"
"(Basic|Digest) realm=.TP-LINK.*Router ([A-Z0-9\-\+]+).*" ::DELIM:: "TP-LINK SoHo Router"
"(Basic|Digest) realm=.TP-LINK.*(Access Point|Extender|AP) ([A-Z0-9\-\+]+).*" ::DELIM:: "TP-LINK SoHo Router"
"(Basic|Digest) .*realm="Broadcom Management Service".*" ::DELIM:: "Supposedly part of Broadcom Advanced Control Suite 3 (BACS3) or something similar"
"(Basic|Digest) .*realm="SWAT".*" ::DELIM:: "Samba Web Administration Tool (SWAT)"
".*(Basic|Digest) realm="SPIP Configuration".*" ::DELIM:: "SPIP publishing system (www.spip.net)"
".*(Basic|Digest) .*realm="HP ISEE @ ([^"]+)".*" ::DELIM:: "HP Instant Support Enterprise Edition with a hostname"
".*(Basic|Digest) .*realm="BIG-IP".*" ::DELIM:: "Generic F5 Big-IP"
"(Basic|Digest) realm="(HP|ProCurve) (J[3]\d{3}A)"" ::DELIM:: "HP ProCurve Hubs"
"(Basic|Digest) realm="(HP|ProCurve) (J[489]\d{3}A)"" ::DELIM:: "HP ProCurve Switches"
"(Basic|Digest) realm="XDB"" ::DELIM:: "Web server providing web services for Oracle's XML DB."
"NTLM" ::DELIM:: "Ignore NTLM-only"
"Negotiate" ::DELIM:: "Ignore Negotiate-only"
"(Basic|Digest) .*realm="null"" ::DELIM:: "Ignore null"
"(Basic|Digest) .*realm="((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)".*" ::DELIM:: "Ignore realms with an IPv4 address"
"(Basic|Digest) .*realm="config".*" ::DELIM:: "Ignore generic 'config' realms"
"(Basic|Digest) realm=.Lyris ListManager: enter email address and password." ::DELIM:: "Lyris ListManager"
"Microsoft Exchange IMAP4rev1 server version (5\.5\.\d{4}\.\d+) \((.*)\) ready" ::DELIM:: "Microsoft Exchange Server 5.5"
"Microsoft Exchange 2000 IMAP4rev1 server version (6\.0\.\d{4}\.\d+) \((.*)\) ready\." ::DELIM:: "Microsoft Exchange Server 2000"
"Microsoft Exchange Server 2003 IMAP4rev1 server version (6\.5\.\d{4}\.\d+) \((.*)\) ready\." ::DELIM:: "Microsoft Exchange Server 2003"
"Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version (6\.5\.\d{4}\.\d+) \((.*)\),.*" ::DELIM:: "Microsoft Exchange Server 2003, German"
"Microsoft Exchange Server 2007 IMAP4 service ready" ::DELIM:: "Microsoft Exchange Server 2007"
"The Microsoft Exchange IMAP4 service is ready\.?" ::DELIM:: "Microsoft Exchange Server"
"Domino IMAP4 Server Release (\d+\.\d+.*) ready (.+)" ::DELIM:: "IBM Lotus Notes/Domino"
"Domino IMAP4 Server V\.?(\d+\.\d+.*) ready (.+)" ::DELIM:: "IBM Lotus Notes/Domino"
"[dD]ovecot (DA )?ready\." ::DELIM:: "Dovecot Secure IMAP Server"
"Courier-IMAP ready. Copyright \d+-\d+" ::DELIM:: "Courier MTA IMAP"
"(\S+) CallPilot IMAP4rev1 v(\S+) server ready\.?" ::DELIM:: "Nortel CallPilot"
"(\S+) Zimbra IMAP4rev1 server ready\.?" ::DELIM:: "VMware Zimbra IMAP"
"(\S+) Zimbra (\S+) IMAP4rev1 server ready\.?" ::DELIM:: "VMware Zimbra IMAP"
"(.+) Cyrus IMAP4 v(\d+\.\d+.*)-OS X( Server)? ([\d\.]+).* server ready" ::DELIM:: "CMU Cyrus IMAP on Mac OS X"
"(.+) Cyrus IMAP4? (\S+ )?v(\d+\.\d+.*) server ready" ::DELIM:: "CMU Cyrus IMAP"
"(vendorName1.\x04.Samba.*domainControllerFunctionality1.{1,5}\x04\x014)" ::DELIM:: "Samba Active Directory Controller"
"(vendorName1.\x04.Samba.*domainFunctionality1.\x04\x0100.\x04\x13forestFunctionality1\x03\x04\x0100)" ::DELIM:: "Samba Active Directory Controller emulating Windows 2000"
"(1.2.840.113556.1.4.800.*domainControllerFunctionality1.{1,5}\x04\x017)" ::DELIM:: "Active Directory Controller on Windows Server 2016"
"(1.2.840.113556.1.4.1851.*domainControllerFunctionality1.{1,5}\x04\x017)" ::DELIM:: "Microsoft LDS on Windows Server Server 2016"
"(domainControllerFunctionality1.{1,5}\x04\x017)" ::DELIM:: "Windows Server Server 2016"
"(1.2.840.113556.1.4.800.*domainControllerFunctionality1.{1,5}\x04\x016)" ::DELIM:: "Active Directory Controller on Windows Server 2012 R2"
"(1.2.840.113556.1.4.1851.*domainControllerFunctionality1.{1,5}\x04\x016)" ::DELIM:: "Microsoft LDS on Windows Server Server 2012 R2"
"(domainControllerFunctionality1.{1,5}\x04\x016)" ::DELIM:: "Windows Server Server 2012 R2"
"(1.2.840.113556.1.4.800.*domainControllerFunctionality1.{1,5}\x04\x015)" ::DELIM:: "Active Directory Controller on Windows Server 2012"
"(1.2.840.113556.1.4.1851.*domainControllerFunctionality1.{1,5}\x04\x015)" ::DELIM:: "Microsoft LDS on Windows Server 2012 R2"
"(domainControllerFunctionality1.{1,5}\x04\x015)" ::DELIM:: "Windows Server Server 2012"
"(1.2.840.113556.1.4.800.*domainControllerFunctionality1.{1,5}\x04\x014)" ::DELIM:: "Active Directory Controller on Windows Server 2008 R2"
"(1.2.840.113556.1.4.1851.*domainControllerFunctionality1.{1,5}\x04\x014)" ::DELIM:: "Microsoft LDS on Windows Server Server 2008 R2"
"(domainControllerFunctionality1.{1,5}\x04\x014)" ::DELIM:: "Windows Server Server 2008 R2"
"(1.2.840.113556.1.4.800.*domainControllerFunctionality1.{1,5}\x04\x013)" ::DELIM:: "Active Directory Controller on Windows Server 2008"
"(1.2.840.113556.1.4.1851.*domainControllerFunctionality1.{1,5}\x04\x013)" ::DELIM:: "Microsoft LDS on Windows Server 2008"
"(domainControllerFunctionality1.{1,5}\x04\x013)" ::DELIM:: "Windows Server Server 2008"
"(1.2.840.113556.1.4.800.*domainControllerFunctionality1.{1,5}\x04\x012)" ::DELIM:: "Active Directory Controller on Windows Server 2003"
"(1.2.840.113556.1.4.1851.*domainControllerFunctionality1.{1,5}\x04\x012)" ::DELIM:: "Microsoft LDS on Windows Server 2003"
"(domainControllerFunctionality1.{1,5}\x04\x012)" ::DELIM:: "Windows Server Server 2003"
"(supportedCapabilities1.{1,5}\x04\x161.2.840.113556.1.4.800\x04\x171.2.840.113556.1.4.17910.{1,5}\x04.(supportedControl|isSynchronized))" ::DELIM:: "Active Directory Controller on Windows Server 2000 SP 3"
"(supportedCapabilities1.{1,5}\x04\x161.2.840.113556.1.4.8000.{1,5}\x04.isSynchronized1)" ::DELIM:: "Active Directory Controller on Windows Server 2000"
"(top\x04..penLDAProotDSE)" ::DELIM:: "OpenLDAP"
"(namingcontexts1.\x04.fn=ContactRoot0.[\x02\x04])" ::DELIM:: "Kerio Connect"
"(vmwPlatformServicesControllerVersion1.\x04.(\d\.\d\.\d)0.)" ::DELIM:: "VMware Platform Services Controller"
"(vendorname1.\x04.Fedora Project0.\x04\rvendorversion1.\x04.Fedora-Directory/(\d\.\d[\w.]* B\d+\.\d+\.\d+))" ::DELIM:: "Fedora Project Fedora Directory Server"
"(vendorname1.\x04.389 Project0.\x04\rvendorversion1.\x04.389-Directory/(\d\.\d[\w.]* B\d+\.\d+\.\d+))" ::DELIM:: "389 Project 389 Directory Server"
"(vendorName1.\x04.CentOS0.\x04\rvendorVersion1.\x04.CentOS-Directory/(\d\.\d[\w.]* B\d+\.\d+\.\d+).\x04\v)" ::DELIM:: "CentOS CentOS Directory Server"
"(vendorName1.\x04.Red Hat(, Inc.)?0.\x04\rvendorVersion1.\x04.Red Hat-Directory/(\d\.\d[\w.]* B\d+\.\d+\.\d+).\x04\v)" ::DELIM:: "Red Hat Red Hat Directory Server"
"(vendorname1.\x04.Netscape Communications Corp.0.\x04\rvendorversion1.\x04.Netscape-Directory/(\d\.\d[\d.]* B\d+\.\d+\.\d+).\x04\v)" ::DELIM:: "Netscape Directory Server"
"(IBM Lotus Software0.\x04\rvendorversion1.\x04.Release (\d+\.\d+[\w .]*)0.\x04.dominomajminversion)" ::DELIM:: "IBM (Lotus) Domino LDAP Server"
"(IBM Lotus Software0.\x04\rvendorversion1.\x04.Release (\d+\.\d+[\w .]*)0\f)" ::DELIM:: "IBM (Lotus) Domino LDAP Server"
"(IBM Lotus Software0.\x04\rvendorversion1.\x04.Build (V[\w .]*)0.\x04.dominomajminversion)" ::DELIM:: "IBM (Lotus) Domino LDAP Server"
"(vendorName1\x13\x04\x11NetIQ Corporation0.\x04\rvendorVersion.{4}LDAP Agent for NetIQ eDirectory (\d+\.\d+[\d.]* [\w ]*\([\d.]+\))0.\x04)" ::DELIM:: "NetIQ LDAP Agent for eDirectory"
"(vendorName1\x0E\x04\fNovell, Inc.0.\x04\rvendorVersion.{4}LDAP Agent for Novell eDirectory (\d+\.\d+[\d.]* [\w ]*\([\d.]+\))0.\x04)" ::DELIM:: "Novell LDAP Agent for eDirectory"
"(vendorName1\x0E\x04\fNovell, Inc.0/\x04\rvendorVersion1\x1E\x04\x1CeDirectory v(\d+\.\d+[\d.]* [\w ]*\([\d.]+\))0.\x04)" ::DELIM:: "Novell eDirectory"
"(vendorname1\x18\x04\x16Sun Microsystems, Inc.0.+\x04\rvendorversion1.{1,2}\x04.{1,2}Sun[- ]Java\(tm\)[- ]System[- ]Directory( Server)?/(\d\.\d+[\w.]*)0.{1,3}\x04)" ::DELIM:: "Sun Java(TM) System Directory Server"
"(vendorname1\x18\x04\x16Sun Microsystems, Inc.0.\x04\rvendorversion1.\x04.Sun-Directory-Server/([\w.]+)0.{1,3}\x04)" ::DELIM:: "Sun Directory Server"
"(vendorname1\x14\x04\x12Oracle Corporation0.\x04\rvendorversion1.\x04.Sun-Directory-Server/([\w.]+)[0 ].{1,3}\x04)" ::DELIM:: "Oracle Sun Directory Server"
"(vendorName1\x17\x04\x15Sun Microsystems, Inc0.\x04\rvendorVersion1.\x04.Directory Proxy Server ([\w.]+)0.\x04)" ::DELIM:: "Sun Directory Proxy Server"
"(vendorname1.\x04.Sun Microsystems, Inc.0.\x04\rvendorversion1.\x04.Sun-ONE-Directory/([\w.]+)0.\x04)" ::DELIM:: "Sun ONE Directory Server"
"(International Business Machines \(IBM\)0.*\x04\rvendorversion1.\x00\x00\x00.\x04.([\d.]+)0.\x00.*ibm-osregistrycontext1.\x00\x00\x00.\x04.OS400-SYS=)" ::DELIM:: "IBM Security Directory Server on OS/400 (IBM i)"
"(vendorname1.+?\x04%International Business Machines \(IBM\)0.+?\x04\rvendorversion1.+?\x04.([\d.]+)0.[\x00\x02\x04])" ::DELIM:: "IBM Security Directory Server"
"(vendorName1.\x00\x00\x00\v\x04\tMirapoint0.\x00\x00\x00.\x04\rvendorVersion1.\x00\x00\x00.\x04.([\d.]+)0.\x00)" ::DELIM:: "Mirapoint LDAP Server"
"(orcldirectoryversion1.{1,5}\x04.OID ([\d.]+)0.\x00\x00)" ::DELIM:: "Oracle Internet Directory"
"(orcldirectoryversion1.{1,5}\x04.OVD ([\d.]+)0.\x04)" ::DELIM:: "Oracle Virtual Directory"
"(metaProductID.*\x04\vmetaVersion1\r\x04.([\d.]+)0.\x04)" ::DELIM:: "estos MetaDirectory"
"(dsaVersion1.\x04,DC Directory Server v(\d+\.\d+[\d.]* \([\w. ]+\))0.\x04)" ::DELIM:: "Cisco Data Connection Directory"
"(vendorName1.\x04.UnboundID Corp.0.\x04\rvendorVersion1.\x04.UnboundID Directory Server ([\d.]+)0\f)" ::DELIM:: "UnboundID Directory Server"
"(vendorName1.\x04.UnboundID Corp.0.\x04\rvendorVersion1.\x04.UnboundID Directory Proxy Server ([\d.]+)0\f)" ::DELIM:: "UnboundID Directory Proxy Server"
"(namingContexts1.\x04.cn=.?pbx.*\x04.ldapServiceName1.\x04.IPVA-\w+-)" ::DELIM:: "innovaphone VoIP Gateway Virtual Appliance"
"(namingContexts1.\x04.cn=.?pbx.*\x04.ldapServiceName1.\x04.(IP\d+)-\w+-)" ::DELIM:: "innovaphone VoIP Gateway"
"(namingContexts1.\x04.cn=.?pbx.*\x04.ldapServiceName1.\x04.(IPBS\d*)-\w+-)" ::DELIM:: "Ascom IP-DECT Base Station"
"(namingContexts1.\x04.cn=.?pbx.*\x04.ldapServiceName1.\x04.(IPBL\d*)-\w+-)" ::DELIM:: "Ascom IP-DECT Gateway"
"(o=Scalix0.\x04.subschemasubentry1.\x04.cn=subSchema,o=Scalix0.\x04.*\x04.xserverversion1.\x04.(\d\d\.\d+\.[\w.-]+)0.\x02)" ::DELIM:: "Scalix LDAP Server"
"osxvers=14" ::DELIM:: "OS X 10.10 (Yosemite)"
"osxvers=13" ::DELIM:: "OS X 10.9 (Mavericks)"
"osxvers=12" ::DELIM:: "OS X 10.8 (Mountain Lion)"
"osxvers=11" ::DELIM:: "Mac OS X 10.7 (Lion)"
"osxvers=10" ::DELIM:: "Mac OS X 10.6 (Snow Leopard)"
"osxvers=9" ::DELIM:: "Mac OS X 10.5 (Leopard)"
"osxvers=8" ::DELIM:: "Mac OS X 10.4 (Tiger)"
"osxvers=7" ::DELIM:: "Mac OS X 10.3 (Panther)"
"osxvers=6" ::DELIM:: "Mac OS X 10.2 (Jaguar)"
"osxvers=5" ::DELIM:: "Mac OS X 10.1 (Puma)"
"osxvers=4" ::DELIM:: "Mac OS X 10.0 (Cheetah)"
"model=AirPort.*" ::DELIM:: "AirPort"
"org\.freedesktop\.Avahi\.cookie=\S+" ::DELIM:: "Avahi"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}([.-]\d{1,2})?([.-]\d{1})?)(-m\d{1,2})?(-rc)?(-alpha)?(-beta)?(-gamma)?(-?max)?(-rs)?(-modified)?(-debug)?(-log)?$" ::DELIM:: "Oracle MySQL (common)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(-m\d)?(-rc)?(-alpha)?(-beta)?-community(-max)?(-debug)?(-log)?(-debug)?" ::DELIM:: "Oracle MySQL Community Edition"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(-alpha)?(-beta)?(-rc)?-community(-max)?-nt(-log)?(-debug)?(-log)?" ::DELIM:: "Oracle MySQL Community Edition with Named Pipes (Windows)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(-alpha)?(-beta)?(-rc)?(-gamma)?(-max)?-nt(-max)?(-log)?" ::DELIM:: "Oracle MySQL with Named Pipes (Windows)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-cll" ::DELIM:: "Oracle MySQL hosted on CPanel"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-community-cll" ::DELIM:: "Oracle MySQL Community hosted on CPanel"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-cll-lve" ::DELIM:: "Oracle MySQL on CloudLinux in a Lightweight Virtual Environment (LVE)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-community-cll-lve" ::DELIM:: "Oracle MySQL Community on CloudLinux in a Lightweight Virtual Environment (LVE)"
"^(\d{1,2}\.\d{1,3}\.\d{1,2})-0ubuntu0.(\d\d\.\d\d)[.\d]*(-log)?" ::DELIM:: "Oracle MySQL on Ubuntu"
"^(\d{1,2}\.\d{1,3}\.\d{1,2})-(Debian_)?\dubuntu(\d{1,2}\.\d\d)[.\d]*(-log)?" ::DELIM:: "Oracle MySQL on Ubuntu"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})[-_](Ubuntu[_-])?(Debian[_-])?\d{1,2}(~exp1)?ubuntu\d{1,2}(\.\d)?(-log)?" ::DELIM:: "Oracle MySQL on Ubuntu where trailing digits aren't OS version"
"^(\d{1,2}\.\d{1,3}\.[^+]+)\+deb\.sury\.org~precise\+\d(-log)?" ::DELIM:: "Oracle MySQL on Ubuntu 12.04 (Precise Pangolin) packaged by deb.sury.org"
"^(\d{1,2}\.\d{1,3}\.[^+]+)\+deb\.sury\.org~trusty\+\d(-log)?" ::DELIM:: "Oracle MySQL on Ubuntu 14.04 (Trusty Tahr) packaged by deb.sury.org"
"^(\d{1,2}\.\d{1,3}\.[^+]+)\+(squeeze\d|deb6u1)(-log)?" ::DELIM:: "Oracle MySQL on Debian 6.0 (squeeze)"
"^(\d{1,2}\.\d{1,3}\.[^+]+)\+wheezy\d(-log)?" ::DELIM:: "Oracle MySQL on Debian 7.0 (wheezy)"
"^(\d{1,2}\.\d{1,3}\.[^+]+)\+lenny\d*(\+spu\d)?(-log)?" ::DELIM:: "Oracle MySQL on Debian 5.0 (lenny)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d~bpo50" ::DELIM:: "Oracle MySQL Backport on Debian 5.0 (lenny)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}).*~?bpo40(\+\d)?(-log)?" ::DELIM:: "Oracle MySQL Backport on Debian 4.0 (etch)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Debian.*~?bpo31(\+\d)?(-log)?" ::DELIM:: "Oracle MySQL Backport on Debian 3.1 (sarge)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Debian_\d~?bpo\.?\d" ::DELIM:: "Oracle MySQL Backport on Debian"
"^(\d{1,2}\.\d{1,3}\.\d{1,2})-Debian_\d?etch\d*(-log)?" ::DELIM:: "Oracle MySQL on Debian 4.0 (etch)"
"^(\d{1,2}\.\d{1,3}\.\d{1,2})[_-]Debian[_-]\d{1,2}sarge\d*(-log)?" ::DELIM:: "Oracle MySQL on Debian 3.1 (sarge)"
"^(\d{1,2}\.\d{1,3}\.\d{1,2})[_-]Debian[_-]\d{1,2}woody\d*(-log)?" ::DELIM:: "Oracle MySQL on Debian 3.0 (woody)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})([_-]\d{8})?[_-]Debian[_-]\d{1,2}(-log)?" ::DELIM:: "Oracle MySQL on Debian (Generic match)"
"^(\d{1,2}\.\d{1,3}\.\d{1,2})(-rc)?[_-]Debian[_-]\d{1,2}~ppa\d(-log)?" ::DELIM:: "Oracle MySQL on Debian (Generic match) using PPA"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(-\d{1,2})?(-Debian)?(-Dotdeb)?[-~_\d\.]+dotdeb\.\d(-log)?" ::DELIM:: "Oracle MySQL packaged by DotDeb.org"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(-alpha)?(-beta)?(-gamma)?(-rc)?-standard(-log)?" ::DELIM:: "Oracle MySQL Standard Edition"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-pro(-gpl)?-nt(-log)?" ::DELIM:: "Oracle MySQL Commercial Edition with Named Pipes (Windows)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-pro(-gpl)?(-cert)?(-log)?" ::DELIM:: "Oracle MySQL Commercial Edition"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}sp1)" ::DELIM:: "Oracle MySQL Enterprise Edition"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-enterprise-nt" ::DELIM:: "Oracle MySQL Enterprise Edition with Named Pipes (Windows)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(-rc)?-enterprise" ::DELIM:: "Oracle MySQL Enterprise Edition"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-ndb-\d\.\d{1,2}\.[a-f\d]{1,3})" ::DELIM:: "Oracle MySQL Cluster Edition"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-CLUSTERS?(-log)?" ::DELIM:: "Oracle MySQL Cluster Edition"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-classic(-log)?" ::DELIM:: "Oracle MySQL Classic Edition"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-?rel\d\d\.\d)(-log)?" ::DELIM:: "Percona Server (MySQL fork) match w/ 'rel'"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d{1,2}-rel\d\d\.\d{1,2}(-log)?" ::DELIM:: "Percona Server (MySQL fork) match w/ 'rel' variant 1"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-(rc)?percona" ::DELIM:: "Percona Server (MySQL fork) w/ percona in banner"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d{1,2}(-\d\d)?(-log)?" ::DELIM:: "Percona Server (MySQL fork) (just version number match)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-rc\d\d\.\d(-log)?" ::DELIM:: "Percona Server (MySQL fork) match w/ 'rc'"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.trusty(-log)?" ::DELIM:: "Percona Server (MySQL fork) on Ubuntu 14.04 (Trusty Tahr)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.saucy(-log)?" ::DELIM:: "Percona Server (MySQL fork) on Ubuntu 13.10 (Saucy Salamander)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.quantal(-log)?" ::DELIM:: "Percona Server (MySQL fork) on Ubuntu 12.10 (Quantal Quetzal)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.precise(-log)?" ::DELIM:: "Percona Server (MySQL fork) on Ubuntu 12.04 LTS (Precise Pangolin)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.wheezy(-log)?" ::DELIM:: "Percona Server (MySQL fork) on Debian 7.0 (wheezy)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.squeeze(-log)?" ::DELIM:: "Percona Server (MySQL fork) on Debian 6.0 (squeeze)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-nmm" ::DELIM:: "Oracle MySQL (nmm variant)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-nightly-\d{8}(-log)?" ::DELIM:: "Oracle MySQL nightly build"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-SERVER" ::DELIM:: "Oracle MySQL (SERVER variant)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-ISPrime" ::DELIM:: "Oracle MySQL (ISPrime variant)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-rc-\d\.\d{1,2}\.[a-f\d]{1,3}" ::DELIM:: "Oracle MySQL possibly Debian specific"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-ius(-log)?" ::DELIM:: "Oracle MySQL packaged for RHEL/CentOS by IUS"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})[\.-]d\d{1,2}-ourdelta\d{0,2}(-log)?" ::DELIM:: "Oracle MySQL tweaked and packaged by OurDelta"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Alibaba(-rds)?-\d{6}(-log)?" ::DELIM:: "Oracle MySQL Alibaba build? distro? Aliyun.com hosted?"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB-cll-lve" ::DELIM:: "MariaDB MariaDB on CloudLinux in a Lightweight Virtual Environment (LVE)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~wheezy(-log)?" ::DELIM:: "MariaDB MariaDB on Debian 7.0 (wheezy)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~squeeze(-log)?" ::DELIM:: "MariaDB MariaDB on Debian 6.0 (squeeze)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-MariaDB.+~lenny(-log)?" ::DELIM:: "MariaDB MariaDB on Debian 5.0 (lenny)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~sid(-log)?" ::DELIM:: "MariaDB MariaDB on Debian Unstable/No version (sid)"
"^(\d{1,2}\.\d{1,3}\.\d{1,4})-MariaDB-\dubuntu\d\.(\d{1,2}\.\d\d)[\.\d]*(-log)?" ::DELIM:: "MariaDB MariaDB on Ubuntu"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~xenial(-log)?" ::DELIM:: "MariaDB MariaDB on Ubuntu 16.04 (Xenial Xerus)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~utopic(-log)?" ::DELIM:: "MariaDB MariaDB on Ubuntu 14.10 (Utopic Unicorn)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~trusty(-log)?" ::DELIM:: "MariaDB MariaDB on Ubuntu 14.04 (Trusty Tahr)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~saucy(-log)?" ::DELIM:: "MariaDB MariaDB on Ubuntu 13.10 (Saucy Salamander)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~raring(-log)?" ::DELIM:: "MariaDB MariaDB on Ubuntu 13.04 (Raring Ringtail)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~quantal(-log)?" ::DELIM:: "MariaDB MariaDB on Ubuntu 12.10 (Quantal Quetzal)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~precise(-log)?" ::DELIM:: "MariaDB MariaDB on Ubuntu 12.04 LTS (Precise Pangolin)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~lucid(-log)?" ::DELIM:: "MariaDB MariaDB on Ubuntu 10.04 (Lucid Lynx)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~hardy(-log)?" ::DELIM:: "MariaDB MariaDB on Ubuntu 8.04 LTS (Hardy Heron)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~trusty-wsrep(-log)?" ::DELIM:: "MariaDB MariaDB with Galera Cluster on Ubuntu 14.04 (Trusty Tahr)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~saucy-wsrep(-log)?" ::DELIM:: "MariaDB MariaDB with Galera Cluster on Ubuntu 13.10 (Saucy Salamander)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~precise-wsrep(-log)?" ::DELIM:: "MariaDB MariaDB with Galera Cluster on Ubuntu 12.04 (Precise Pangolin)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~lucid-wsrep(-log)?" ::DELIM:: "MariaDB MariaDB with Galera Cluster on Ubuntu 10.04 TLS (Lucid Lynx)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~wheezy-wsrep(-log)?" ::DELIM:: "MariaDB MariaDB with Galera Cluster on Debian 7.0 (wheezy)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~squeeze-wsrep(-log)?" ::DELIM:: "MariaDB MariaDB with Galera Cluster on Debian 6.0 (squeeze)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~sid-wsrep(-log)?" ::DELIM:: "MariaDB MariaDB with Galera Cluster on Debian Unstable/No version (sid)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB-wsrep(-log)?" ::DELIM:: "MariaDB MariaDB with Galera Cluster"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-Maria(DB)?[-\d]*(-debug)?(-ga)?(-beta)?(-mariadb)?[~\.\d]*(-log)?" ::DELIM:: "MariaDB MariaDB"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Community-Maria(DB)?(-log)?" ::DELIM:: "MariaDB MariaDB Community Edition"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB-enterprise" ::DELIM:: "MariaDB MariaDB Enterprise Edition"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-falcon-alpha-community-nt" ::DELIM:: "Oracle MySQL with defunct Falcon Storage Engine with Named Pipes (Windows)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-falcon-alpha(-community)?(-log)?" ::DELIM:: "Oracle MySQL with defunct Falcon Storage Engine"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-tokudb-\d\.\d\.\d{1,2}(-\d*)?(-log)?" ::DELIM:: "Tokutek customized MySQL"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-tokudb-.*MariaDB(-log)?" ::DELIM:: "Tokutek customized MariaDB"
"^(\d{1,2}\.\d{1,2}\.[a-f\d]{1,3})-Sphinx" ::DELIM:: "Oracle MySQL with the Sphinx full text search engine"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(-\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})?\+tld\d" ::DELIM:: "Oracle MySQL packaged by TLD Linux"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Debian_\d\.infrant\d" ::DELIM:: "Oracle MySQL on a Netgear ReadyNAS"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-beget(-log)?" ::DELIM:: "Oracle MySQL at Ukrainian hoster BeGet(?)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-(Linuxtone.Org|LTOPS)(-log)?" ::DELIM:: "Oracle MySQL at Chinese hoster Linuxtone.org"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-xencdn.net(-log)?" ::DELIM:: "Oracle MySQL at Chinese hoster Xencdn.net"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Comsenz(-log)?" ::DELIM:: "Oracle MySQL at Chinese hoster Comsenz"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-www\.gamewave\.net(-edition)?(-log)?" ::DELIM:: "Oracle MySQL at Chinese game hoster Gamewave"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}([.-]\d{1,2})?([.-]\d{1})?)[-\d]*-beget(-log)?" ::DELIM:: "Oracle MySQL at Russian hoster Beget"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})yes(-log)?" ::DELIM:: "Oracle MySQL part of KB2 / Kimsboard (Korean site mgmt)?"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})\.t\d{1,2}([\.\d]{3})?(-log)?" ::DELIM:: "Oracle MySQL audited/published by Twitter"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}) Hybrid Cluster MySQL Proxy to" ::DELIM:: "Oracle MySQL by Hybrid Cluster (hosted?)"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}) ScaleBase Data Traffic Manager [\.\d]+" ::DELIM:: "Oracle MySQL behind ScaleBase Data Traffic Manager"
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d{1,2}-\d\.ctbanco\d+(-log)?" ::DELIM:: "Percona Server (MySQL fork) with 'ctbanco' "
"^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}) Complete MySQL by Server Logistics(-log)?" ::DELIM:: "Oracle MySQL packaged by Server Logistics, Mac specific"
"Stroj '[^']+' nemá povoleno se k tomuto MySQL serveru připojit" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (cze)"
"Værten '[^']+' kan ikke tilkoble denne MySQL-server" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (dan)"
"Het is host '[^']+' is niet toegestaan verbinding te maken met deze MySQL server" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (nla)"
"^(#HY000)?Host '[^']+' is not allowed to connect to this MySQL server$" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (eng)"
"Masinal '[^']+' puudub ligipääs sellele MySQL serverile" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (est)"
"Le hôte '[^']+' n'est pas authorisé à se connecter à ce serveur MySQL" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (fre)"
"Host '[^']+' hat keine Berechtigung, sich mit diesem MySQL-Server zu verbinden" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (ger)"
"Ο υπολογιστής '[^']+' δεν έχει δικαίωμα σύνδεσης με τον MySQL server" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (greek)"
"A '[^']+' host szamara nem engedelyezett a kapcsolodas ehhez a MySQL szerverhez" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (hun)"
"Al sistema '[^']+' non e` consentita la connessione a questo server MySQL" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (ita)"
"ホスト '[^']+' からのこの MySQL server への接続は許可されていません。" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (jpn)"
"'[^']+' 호스트는 이 MySQL서버에 접속할 허가를 받지 못했습니다." ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (kor)"
"'Host' '[^']+' não tem permissão para se conectar com este servidor MySQL" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (por)"
"Host-ul '[^']+' nu este permis a se conecta la aceste server MySQL" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (rum)"
"Хосту '[^']+' не разрешается подключаться к этому серверу MySQL" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (rus)"
"Host-u '[^']+' nije dozvoljeno da se konektuje na ovaj MySQL server" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (serbian)"
"Servidor '[^']+' no está permitido para conectar con este servidor MySQL" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (spa)"
"Denna dator, '[^']+', har inte privileger att använda denna MySQL server" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (swe)"
"Хосту '[^']+' не доволено зв'язуватись з цим сервером MySQL" ::DELIM:: "Oracle MySQL error ER_HOST_NOT_PRIVILEGED (ukr)"
"Stroj '[^']+' je zablokován kvůli mnoha chybám při připojování. Odblokujete použitím 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (cze)"
"Værten '[^']+' er blokeret på grund af mange fejlforespørgsler. Lås op med 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (dan)"
"Host '[^']+' is geblokkeeerd vanwege te veel verbindings fouten. Deblokkeer met 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (nla)"
"Host '[^']+' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (eng)"
"Masin '[^']+' on blokeeritud hulgaliste ühendusvigade tõttu. Blokeeringu saab tühistada 'mysqladmin flush-hosts' käsuga" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (est)"
"L'hôte '[^']+' est bloqué à cause d'un trop grand nombre d'erreur de connexion. Débloquer le par 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (fre)"
"Host '[^']+' blockiert wegen zu vieler Verbindungsfehler. Aufheben der Blockierung mit 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (ger)"
"Ο υπολογιστής '[^']+' έχει αποκλεισθεί λόγω πολλαπλών λαθών σύνδεσης. Προσπαθήστε να διορώσετε με 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (greek)"
"A '[^']+' host blokkolodott, tul sok kapcsolodasi hiba miatt. Hasznalja a 'mysqladmin flush-hosts' parancsot" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (hun)"
"Sistema '[^']+' bloccato a causa di troppi errori di connessione. Per sbloccarlo: 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (ita)"
"接続エラーが多いため、ホスト '[^']+' は拒否されました。'mysqladmin flush-hosts' で解除できます。" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (jpn)"
"너무 많은 연결오류로 인하여 호스트 '[^']+'는 블락되었습니다. 'mysqladmin flush-hosts'를 이용하여 블락을 해제하세요" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (kor)"
"'Host' '[^']+' está bloqueado devido a muitos erros de conexão. Desbloqueie com 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (por)"
"Host-ul '[^']+' e blocat din cauza multelor erori de conectie. Poti deploca folosind 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (rum)"
"Хост '[^']+' заблокирован из-за слишком большого количества ошибок соединения. Разблокировать его можно с помощью 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (rus)"
"Host '[^']+' je blokiran zbog previše grešaka u konekciji. Možete ga odblokirati pomoću komande 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (serbian)"
"Servidor '[^']+' está bloqueado por muchos errores de conexión. Desbloquear con 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (spa)"
"Denna dator, '[^']+', är blockerad pga många felaktig paket. Gör 'mysqladmin flush-hosts' för att ta bort alla blockeringarna" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (swe)"
"Хост '[^']+' заблоковано з причини великої кількості помилок з'єднання. Для розблокування використовуйте 'mysqladmin flush-hosts'" ::DELIM:: "Oracle MySQL error ER_HOST_IS_BLOCKED (ukr)"
"Nemohu vytvořit nový thread \(errno -?\d+\). Pokud je ještě nějaká volná paměť, podívejte se do manuálu na část o chybách specifických pro jednotlivé operační systémy" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (cze)"
"Kan ikke danne en ny tråd \(fejl nr. -?\d+\). Hvis computeren ikke er løbet tør for hukommelse, kan du se i brugervejledningen for en mulig operativ-system - afhængig fejl" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (dan)"
"Kan geen nieuwe thread aanmaken \(Errcode: -?\d+\). Indien er geen tekort aan geheugen is kunt u de handleiding consulteren over een mogelijke OS afhankelijke fout" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (nla)"
"Can't create a new thread \(errno -?\d+\); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (eng, pol, nor, norwegian-ny)"
"Ei suuda luua uut lõime \(veakood -?\d+\). Kui mälu ei ole otsas, on tõenäoliselt tegemist operatsioonisüsteemispetsiifilise veaga" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (est)"
"Impossible de créer une nouvelle tâche \(errno -?\d+\). S'il reste de la mémoire libre, consultez le manual pour trouver un éventuel bug dépendant de l'OS" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (fre)"
"Kann keinen neuen Thread erzeugen \(Fehler: -?\d+\). Sollte noch Speicher verfügbar sein, bitte im Handbuch wegen möglicher Fehler im Betriebssystem nachschlagen" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (ger)"
"Uj thread letrehozasa nem lehetseges \(Hibakod: -?\d+\). Amenyiben van meg szabad memoria, olvassa el a kezikonyv operacios rendszerfuggo hibalehetosegekrol szolo reszet" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (hun)"
"Impossibile creare un nuovo thread \(errno -?\d+\). Se non ci sono problemi di memoria disponibile puoi consultare il manuale per controllare possibili problemi dipendenti dal SO" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (ita)"
"新規にスレッドを作成できません。\(エラー番号 -?\d+\) もしも使用可能メモリーの不足でなければ、OS依存のバグである可能性があります。" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (jpn)"
"새로운 쓰레드를 만들 수 없습니다.\(에러번호 -?\d+\). 만약 여유메모리가 있다면 OS-dependent버그 의 메뉴얼 부분을 찾아보시오." ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (kor)"
"Não pode criar uma nova 'thread' \(erro no. -?\d+\). Se você não estiver sem memória disponível, você pode consultar o manual sobre um possível 'bug' dependente do sistema operacional" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (por)"
"Nu pot crea un thread nou \(Eroare -?\d+\). Daca mai aveti memorie disponibila in sistem, puteti consulta manualul - ar putea exista un potential bug in legatura cu sistemul de operare" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (rum)"
"Невозможно создать новый поток \(ошибка -?\d+\). Если это не ситуация, связанная с нехваткой памяти, то вам следует изучить документацию на предмет описания возможной ошибки работы в конкретной ОС" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (rus)"
"Ne mogu da kreiram novi thread \(errno -?\d+\). Ako imate još slobodne memorije, trebali biste da pogledate u priručniku da li je ovo specifična greška vašeg operativnog sistema" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (serbian)"
"No puedo crear un nuevo thread \(errno -?\d+\). Si tu está con falta de memoria disponible, tu puedes consultar el Manual para posibles problemas con SO" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (spa)"
"Kan inte skapa en ny tråd \(errno -?\d+\)" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (swe)"
"Не можу створити нову гілку \(помилка -?\d+\). Якщо ви не використали усю пам'ять, то прочитайте документацію до вашої ОС - можливо це помилка ОС" ::DELIM:: "Oracle MySQL error ER_CANT_CREATE_THREAD (ukr)"
"Příliš mnoho spojení" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (cze)"
"For mange forbindelser \(connections\)" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (dan)"
"Te veel verbindingen" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (nla)"
"Too many connections" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (eng)"
"Liiga palju samaaegseid ühendusi" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (est)"
"Trop de connexions" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (fre)"
"Zu viele Verbindungen" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (ger)"
"Υπάρχουν πολλές συνδέσεις..." ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (greek)"
"Tul sok kapcsolat" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (hun)"
"Troppe connessioni" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (ita)"
"接続が多すぎます。" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (jpn)"
"너무 많은 연결... max_connection을 증가 시키시오..." ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (kor)"
"For mange tilkoblinger \(connections\)" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (nor)"
"For mange tilkoplingar \(connections\)" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (norwegian-ny)"
"Zbyt wiele poł\?czeń" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (pol)"
"Excesso de conexões" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (por)"
"Prea multe conectiuni" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (rum)"
"Слишком много соединений" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (rus)"
"Previše konekcija" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (serbian)"
"Príliš mnoho spojení" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (slo)"
"Demasiadas conexiones" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (spa)"
"För många anslutningar" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (swe)"
"Забагато з'єднань" ::DELIM:: "Oracle MySQL error ER_CON_COUNT_ERROR (ukr)"
"Nemohu zjistit jméno stroje pro Vaši adresu" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (cze)"
"Kan ikke få værtsnavn for din adresse" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (dan)"
"Kan de hostname niet krijgen van uw adres" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (nla)"
"Can't get hostname for your address" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (eng)"
"Ei suuda lahendada IP aadressi masina nimeks" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (est)"
"Ne peut obtenir de hostname pour votre adresse" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (fre)"
"Kann Hostnamen für diese Adresse nicht erhalten" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (ger)"
"Δεν έγινε γνωστό το hostname για την address σας" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (greek)"
"A gepnev nem allapithato meg a cimbol" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (hun)"
"Impossibile risalire al nome dell'host dall'indirizzo \(risoluzione inversa\)" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (ita)"
"IPアドレスからホスト名を解決できません。" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (jpn)"
"당신의 컴퓨터의 호스트이름을 얻을 수 없읍니다." ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (kor)"
"Kan ikke få tak i vertsnavn for din adresse" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (nor)"
"Kan ikkje få tak i vertsnavn for di adresse" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (norwegian-ny)"
"Nie można otrzymać nazwy hosta dla twojego adresu" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (pol)"
"Não pode obter nome do 'host' para seu endereço" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (por)"
"Nu pot sa obtin hostname-ul adresei tale" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (rum)"
"Невозможно получить имя хоста для вашего адреса" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (rus)"
"Ne mogu da dobijem ime host-a za vašu IP adresu" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (serbian)"
"Nemôžem zistiť meno hostiteľa pre vašu adresu" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (slo)"
"No puedo obtener el nombre de maquina de tu direccion" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (spa)"
"Kan inte hitta 'hostname' för din adress" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (swe)"
"Не можу визначити ім'я хосту для вашої адреси" ::DELIM:: "Oracle MySQL error ER_BAD_HOST_ERROR (ukr)"
"Host '[^']+' is not allowed to connect to this MariaDB server" ::DELIM:: "MariaDB MariaDB - Error: Host not allowed to connect (English) "
"#07000Proxy Warning - IP Forbidden" ::DELIM:: "Oracle MySQL Proxy - Error: Host not allowed to connect"
"\(proxy\) all backends are down" ::DELIM:: "Oracle MySQL Proxy - Error: Backends down"
"NNTP Service (.*) Version: (5.0.2195.[0-9]+) .*" ::DELIM:: "Microsoft IIS NNTP Server on Windows 2000"
"NNTP Service (.*) Version: (6.0.3790.[0-9]+) .*" ::DELIM:: "Microsoft IIS NNTP Server on Windows Server 2003"
"NNTP Service Microsoft. Internet Services (.*) Version: ([^ ]+) .*" ::DELIM:: "Older Microsoft IIS NNTP Servers"
"((Microsoft )?(Windows ([a-z]+\s[a-z]+\s|[a-z]+\s)?Server (\d{4} R2|\d{4}))(,\s|\s)?([a-z]+)?( Evaluation)?( Edition)?(\s|\swith(out)? Hyper-V\s)?(SP\d|SP \d|Service Pack \d)?)" ::DELIM:: "Windows Server 2003 and later"
"((Microsoft )?(Windows (XP|Vista|7|8|8.1|10))(\s)?((?!Mobile)([a-z]+|[a-z]+, )?([a-z]+|[a-z]+\s[a-z]+)?)?( Edition)?(\s)?(SP\d|SP \d|Service Pack \d)?)" ::DELIM:: "Windows Desktop XP and later"
"((Microsoft )?Windows 2000(\s)?([a-z]+|[a-z]+\s[a-z]+)?(\s)?(SP\d|SP \d|Service Pack \d)?)" ::DELIM:: "Windows 2000"
"((Microsoft )?Windows NT (\d.\d{1,2})?(\s)?([a-z]+|[a-z]+\s[a-z]+)?)" ::DELIM:: "Windows NT"
"((Microsoft )?Windows 10 Mobile(\s(?!Edition)([a-z]+))?( Edition)?)" ::DELIM:: "Windows 10 Mobile"
"((Microsoft )?Windows Phone (\d|\d\.\d)?)" ::DELIM:: "Windows Phone 7 and later"
"((Microsoft )?(Windows\s?(95|98|98SE|98 SE|98 Second Edition|ME|Millenium Edition)))" ::DELIM:: "Windows 9x"
"((Microsoft )?Windows(\sNT)? 6.1)" ::DELIM:: "Windows version 6.1 (Windows 7 or Windows Server 2008 R2)"
"((Microsoft )?Windows(\sNT)? 6.2)" ::DELIM:: "Windows version 6.2 (Windows 8 or Windows Server 2012)"
"((Microsoft )?Windows(\sNT)? 6.3)" ::DELIM:: "Windows version 6.3 (Windows 8.1 or Windows Server 2012 R2)"
"((Microsoft )?Windows(\sNT)? 10.0)" ::DELIM:: "Windows version 10.0 (Windows 10 or Windows Server 2016)"
"((Microsoft )?Windows.*)" ::DELIM:: "Windows catch-all"
"(Alpine Linux\s?(v)?(\d+?(\.\d+?)*?(\src\d+?)?)?)" ::DELIM:: "Alpine Linux"
"(Arch Linux\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Arch Linux"
"(Amazon Linux( AMI)?\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Amazon Linux AMI"
"(CentOS( Linux)?( [a-z]+)?\s?(\d+?(\.\d+?)*?)?)(\s.*?)?" ::DELIM:: "Centos Linux"
"(Debian( (GNU\/)?Linux)?\s?((\d+?(\.\d+?)*?)|(\w+?\/sid\s?))?(\s[a-z\(\)]+)?)" ::DELIM:: "Debian Linux"
"(Fedora( Core)?( Linux)?( release)?\s?(\d+?)?(\s.*)?)" ::DELIM:: "Fedora Linux"
"(Gentoo( Linux)\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Gentoo Linux"
"(Kali( Linux)?\s?(\d+?(\.\d+?)+?([a-z])?|\d+?)?)" ::DELIM:: "Kali Linux"
"(Kubuntu( Linux)?\s(\d+?(\.\d+?)*?)?\s?(LTS)?)" ::DELIM:: "Kubuntu Linux"
"(Oracle( Enterprise)? Linux\s?(Server\s?)?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Oracle Enterprise Linux"
"(OpenSUSE( Linux)?( [a-z]+?)??\s?(\d+?(\.\d+?)*?)?(\s\(.*)?)" ::DELIM:: "OpenSUSE Linux"
"((Red Hat|RedHat|Red-Hat|RHEL)( Enterprise)?( Linux)?( [a-z]+)?\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Red Hat Enterprise Linux"
"(Scientific( Linux)?\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Scientific Linux"
"(Slackware( Linux)\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Slackware Linux"
"(SUSE( SLED)?( Linux Enterprise Desktop)?\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "SUSE Linux Enterprise Desktop"
"(SUSE( SLES)?( Linux Enterprise Server)?\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "SUSE Linux Enterprise Server"
"(SLES( Linux Enterprise Server)?\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "SLES Linux Enterprise Server"
"(Ubuntu( Linux)?(\s|-)(\d+?(\.\d+?)*?)?\s?(LTS)?)" ::DELIM:: "Ubuntu Linux"
"(Xubuntu( Linux)?\s(\d+?(\.\d+?)*?)?\s?(LTS)?)" ::DELIM:: "Xubuntu Linux"
"(VMWare Photon(\/)?(\s?Linux)?\s?(v)?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Photon Linux"
"((.*)\sLinux?\s(.*))" ::DELIM:: "Vendor-based Linux catch-all"
"(.*Linux?\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Linux catch-all"
"((Apple )?Mac OS ([7-9](\.\d+?)*?))" ::DELIM:: "Mac OS 9"
"((Apple OS X|Apple Mac OS X|Mac OS X|OS X|Mac OS)\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Mac OS X with version number"
"((Apple )?Mac OS X Cheetah)" ::DELIM:: "Mac OS X Cheetah"
"((Apple )?Mac OS X Puma)" ::DELIM:: "Mac OS X Puma"
"((Apple )?Mac OS X Jaguar)" ::DELIM:: "Mac OS X Jaguar"
"((Apple )?Mac OS X Panther)" ::DELIM:: "Mac OS X Panther"
"((Apple )?Mac OS X Tiger)" ::DELIM:: "Mac OS X Tiger"
"((Apple )?Mac OS X Leopard)" ::DELIM:: "Mac OS X Leopard"
"((Apple )?Mac OS X Snow Leopard)" ::DELIM:: "Mac OS X Snow Leopard"
"((Apple )?Mac OS X Lion)" ::DELIM:: "Mac OS X Lion"
"((Apple )?Mac OS X Mountain Lion)" ::DELIM:: "Mac OS X Mountain Lion"
"((Apple )?Mac OS X Mavericks)" ::DELIM:: "Mac OS X Mavericks"
"((Apple )?Mac OS X Yosemite)" ::DELIM:: "Mac OS X Yosemite"
"((Apple )?Mac OS X El Capitan)" ::DELIM:: "Mac OS X El Capitan"
"((.*?BSD)\s?(\d+?(\.\d+?)*?([\-\/_ ]?\w+?)?(-[a-z]\d+?)?)?)" ::DELIM:: "Many BSD family OSes"
"((Oracle|Sun)?\s?OpenSolaris\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "OpenSolaris"
"((Oracle|Sun)?\s?Solaris\s?(1[1-9]?(\.\d+?)*?)?)" ::DELIM:: "Solaris 11 and up"
"((Oracle|Sun)?\s?Solaris\s?(([789]|10)+?(\.\d+?)*?)?)" ::DELIM:: "Solaris 7-10"
"((Oracle|Sun)?\s?SunOS\s?5.([789]|10)?)" ::DELIM:: "SunOS/Solaris 5.7-5.10"
"((Oracle|Sun)?\s?SunOS\s?5.(1[1-9])?)" ::DELIM:: "Oracle/Solaris 5.11 and upwards"
"((IBM\s?)?(AIX|MVS|OS/(\d{1,3})|VM/CMS|VM/ESA|z/OS)\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "IBM OSes"
"((HP\s?)?(Digital UNIX|HP-UX|iLO|OpenVMS|ProLiant|Tru64 UNIX)\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "HP OSes"
"((Juniper\s?)?(Junos|Junos OS|ScreenOS)\s?(\d+?(\.\d+?)*?)?)" ::DELIM:: "Juniper"
"((Cisco\s?)?(ASA|Adaptive Security Appliance|IOS|IOS-XE|IOS-XR|NX-OS|PIX-OS|SAN-OS)\s?(Version (\S+))?)" ::DELIM:: "Cisco"
"([^ ]+) +Cyrus POP3 v(\d+\.\d+.*)-OS X( Server)? ([\d\.]+).* server ready" ::DELIM:: "OSX Cyrus POP"
"([^ ]+) +Cyrus POP3 v([\d\.]+)" ::DELIM:: "CMU Cyrus POP"
"Lotus Notes POP3 server version X[^ ]+ ready on .*" ::DELIM:: "IBM Lotus Notes/Domino"
"Lotus Notes POP3 server version Release ([^ ]+) ready on .*" ::DELIM:: "IBM Lotus Notes/Domino"
"Qpopper \(version (\d+\.\d+\.\d+), modified by Sphera Technologies\) at (.+) starting\..*" ::DELIM:: "Qpopper with Sphera mods"
"Qpopper \(version (\d+\.\d+\.\d+)-mysql-(.+)\) at (.+) starting\..*" ::DELIM:: "Qpopper with MySQL auth module"
"Qpop(per)? \(version ([\d\.]+)\) at (.+)( starting\.)?.*" ::DELIM:: "Qpopper missing version info"
"QPOP \(version (.*)\) at (.+) starting\..*" ::DELIM:: "Qpopper with missing version info"
"Microsoft Exchange Server 2003 POP3 server version (\d+\.\d+\.\d+\.\d+) (.+) ready." ::DELIM:: "Microsoft Exchange Server 2003"
"Microsoft Exchange 2000 POP3 server version (\d+\.\d+\.\d+\.\d+) (.+) ready." ::DELIM:: "Microsoft Exchange Server 2000"
"Microsoft Exchange POP3 server version (\d+\.\d+\.\d+\.\d+) ready" ::DELIM:: "Microsoft Exchange Server"
"Microsoft Windows POP3 Service Version 1.0 <.+@(.+)> ready." ::DELIM:: "Microsoft POP3 Services on Windows 2003"
"Microsoft Exchange Server 2007 POP3 service ready\.?" ::DELIM:: "Microsoft Exchange Server 2007"
"The? Microsoft Exchange POP3 service is ready\.?" ::DELIM:: "Microsoft Exchange Server, generic"
"[dD]ovecot (DA )?ready\.( <.+@(.+)>)?" ::DELIM:: "Dovecot Secure POP Server"
"(\S+) Zimbra POP3 server ready\.?" ::DELIM:: "VMware Zimbra POP"
"(\S+) Zimbra (\S+) POP3 server ready\.?" ::DELIM:: "VMware Zimbra POP"
"(S?POP3? server ready |Hello there.? )?<.*@([^>]+)>" ::DELIM:: "Generic masked POP3 server"
"ApplePasswordServer ([\d\.]+) password" ::DELIM:: "Apple Open Directory"
"TCPIP POP server V\d\.\d\S-\S{3}, OpenVMS V(\d\.\d-\d)(\s+\S+)?\s+at\s+(\S+), .*" ::DELIM:: "TCP/IP Services for OpenVMS POP server"
"Hello there\." ::DELIM:: "Courier MTA POP"
"CMailServer ([\d\.]+) POP3 Service Ready" ::DELIM:: "CMailServer"
"POP3 Bigfoot v(\d\.\d) server ready" ::DELIM:: "POP3 Bigfoot server"
"CCProxy ([\d.]+) POP3 Service Ready" ::DELIM:: "CCProxy POP3 server"
"POP3 on WinWebMail \[([\d.]+)\] ready\." ::DELIM:: "WinWebmail POP3"
"BlackJumboDog \(Version ([\d\.]+)\) ready" ::DELIM:: "BlackJumboDog"
".Permission denied: Error 0" ::DELIM:: "Digital Unix rlogind"
".Winsock RSHD/NT: Protocol negotiation error\..+$|^.in\.rlogind: Permission denied\..+$" flags="REG_DOT_NEWLINE" ::DELIM:: "Windows rlogind"
".permission denied\..+$" flags="REG_DOT_NEWLINE" ::DELIM:: "Solaris rlogind"
".rlogind: Acc.s refus.\..+$" flags="REG_DOT_NEWLINE" ::DELIM:: "AIX rlogind"
".rlogind: Host name for your address \([\d.]+\) unknown\..*$" flags="REG_DOT_NEWLINE" ::DELIM:: "A/UX rlogind"
".rexecd: Login incorrect\..*$" flags="REG_DOT_NEWLINE" ::DELIM:: "HP-UX rexecd"
".rexecd: [-\d]+.*$" flags="REG_DOT_NEWLINE" ::DELIM:: "AIX rexecd"
".remshd: (getservbyname.+|Kerberos Authentication not enabled\..+|Error! Kerberos authentication failed)" ::DELIM:: "HP-UX rshd"
"Cisco-SIPGateway/IOS-([\d\.x]+)" ::DELIM:: "Cisco SIPGateway"
"TANDBERG/\d+ \(([a-zA-Z]+\d+(\.\d+)+).*\)" ::DELIM:: "Cisco TelePresence"
"Cisco-SIPGateway/IOS-([\d\.x]+)" ::DELIM:: "Cisco SIPGateway"
"FRITZ!OS" ::DELIM:: "AVM FritzOS Device"
"(AVM )?(FRITZ!Box .*) +(\d+\.\d+\.\d+)" ::DELIM:: "AVM FritzBox"
"(AVM )?(FRITZ!Fon .*) +(\d+\.\d+\.\d+)" ::DELIM:: "AVM FritzFon"
"(AVM )?(Multibox .*) +(\d+\.\d+\.\d+)" ::DELIM:: "AVM Multibox"
"(Windows (95|98|ME))" ::DELIM:: "Windows 95/98/ME"
"Windows 5\.0" ::DELIM:: "Windows 2000"
"Windows 5\.1" ::DELIM:: "Windows XP"
"Windows XP (\d+) (Service Pack \d+)" ::DELIM:: "Windows XP"