recog 2.3.7 → 2.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +3 -2
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +2 -4
- data/Gemfile +2 -5
- data/bin/recog_standardize +118 -0
- data/cpe-remap.yaml +21 -0
- data/features/match.feature +4 -0
- data/features/support/aruba.rb +3 -0
- data/features/verify.feature +5 -0
- data/identifiers/README.md +47 -0
- data/identifiers/os_architecture.txt +20 -0
- data/identifiers/os_device.txt +52 -0
- data/identifiers/os_family.txt +160 -0
- data/identifiers/os_product.txt +199 -0
- data/identifiers/service_family.txt +185 -0
- data/identifiers/service_product.txt +255 -0
- data/identifiers/software_class.txt +26 -0
- data/identifiers/software_family.txt +91 -0
- data/identifiers/software_product.txt +333 -0
- data/identifiers/vendor.txt +405 -0
- data/lib/recog/version.rb +1 -1
- data/spec/lib/fingerprint_self_test_spec.rb +1 -1
- data/spec/lib/recog/fingerprint/regexp_factory_spec.rb +1 -1
- data/update_cpes.py +1 -1
- data/xml/apache_os.xml +9 -0
- data/xml/architecture.xml +9 -5
- data/xml/dns_versionbind.xml +9 -11
- data/xml/ftp_banners.xml +47 -5
- data/xml/html_title.xml +310 -196
- data/xml/http_cookies.xml +13 -1
- data/xml/http_servers.xml +145 -7
- data/xml/http_wwwauth.xml +13 -1
- data/xml/mdns_device-info_txt.xml +20 -16
- data/xml/mysql_banners.xml +420 -38
- data/xml/ntp_banners.xml +16 -8
- data/xml/operating_system.xml +1 -0
- data/xml/rtsp_servers.xml +21 -21
- data/xml/sip_banners.xml +5 -41
- data/xml/sip_user_agents.xml +40 -1
- data/xml/smb_native_os.xml +1 -0
- data/xml/smtp_banners.xml +3 -4
- data/xml/snmp_sysdescr.xml +44 -28
- data/xml/ssh_banners.xml +78 -73
- data/xml/telnet_banners.xml +30 -9
- data/xml/x11_banners.xml +1 -1
- data/xml/x509_issuers.xml +7 -7
- data/xml/x509_subjects.xml +329 -28
- metadata +23 -6
data/xml/smb_native_os.xml
CHANGED
@@ -453,6 +453,7 @@
|
|
453
453
|
<param pos="1" name="os.version"/>
|
454
454
|
<param pos="2" name="os.version.version"/>
|
455
455
|
<param pos="3" name="os.version.version.version"/>
|
456
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:ibm:os_400:{os.version}"/>
|
456
457
|
</fingerprint>
|
457
458
|
<fingerprint pattern="^Apple Base Station$">
|
458
459
|
<description>SMB exposed via SMB shared USB disks on Apple devices</description>
|
data/xml/smtp_banners.xml
CHANGED
@@ -249,7 +249,7 @@
|
|
249
249
|
<param pos="0" name="service.family" value="IIS"/>
|
250
250
|
<param pos="0" name="service.product" value="IIS"/>
|
251
251
|
<param pos="2" name="service.version"/>
|
252
|
-
<param pos="0" name="service.cpe23" value="cpe:/a:microsoft:iis:
|
252
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:microsoft:iis:{service.version}"/>
|
253
253
|
<param pos="1" name="host.name"/>
|
254
254
|
<param pos="3" name="system.time"/>
|
255
255
|
<param pos="0" name="system.time.format" value="EEE, d MMM yyyy HH:mm:ss Z"/>
|
@@ -265,7 +265,7 @@
|
|
265
265
|
<param pos="0" name="service.family" value="IIS"/>
|
266
266
|
<param pos="0" name="service.product" value="IIS"/>
|
267
267
|
<param pos="2" name="service.version"/>
|
268
|
-
<param pos="0" name="service.cpe23" value="cpe:/a:microsoft:iis:
|
268
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:microsoft:iis:{service.version}"/>
|
269
269
|
<param pos="1" name="host.name"/>
|
270
270
|
<param pos="3" name="system.time"/>
|
271
271
|
<param pos="0" name="system.time.format" value="EEE, d MMM yyyy HH:mm:ss Z"/>
|
@@ -399,8 +399,8 @@
|
|
399
399
|
<param pos="0" name="service.vendor" value="exim"/>
|
400
400
|
<param pos="0" name="service.family" value="exim"/>
|
401
401
|
<param pos="0" name="service.product" value="exim"/>
|
402
|
-
<param pos="1" name="host.name"/>
|
403
402
|
<param pos="0" name="service.cpe23" value="cpe:/a:exim:exim:-"/>
|
403
|
+
<param pos="1" name="host.name"/>
|
404
404
|
</fingerprint>
|
405
405
|
<fingerprint pattern="^([^ ]+) FTGate server ready .*$">
|
406
406
|
<description>FTGate mail server, runs on Windows 9x/NT/2k (http://www.ftgate.com)</description>
|
@@ -1683,7 +1683,6 @@
|
|
1683
1683
|
<param pos="0" name="service.vendor" value="OpenBSD"/>
|
1684
1684
|
<param pos="0" name="service.family" value="OpenSMTPD"/>
|
1685
1685
|
<param pos="0" name="service.product" value="OpenSMTPD"/>
|
1686
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:openbsd:openbsd:-"/>
|
1687
1686
|
<param pos="0" name="service.cpe23" value="cpe:/a:openbsd:opensmtpd:-"/>
|
1688
1687
|
<param pos="1" name="host.name"/>
|
1689
1688
|
</fingerprint>
|
data/xml/snmp_sysdescr.xml
CHANGED
@@ -1333,7 +1333,7 @@
|
|
1333
1333
|
<param pos="0" name="os.device" value="Video Conferencing"/>
|
1334
1334
|
<param pos="1" name="os.version"/>
|
1335
1335
|
<param pos="0" name="hw.vendor" value="Cisco"/>
|
1336
|
-
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
1336
|
+
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
1337
1337
|
<param pos="2" name="hw.product"/>
|
1338
1338
|
</fingerprint>
|
1339
1339
|
<fingerprint pattern="^Cisco TelePresence ((?:HD )?MCU(?: MSE)? \d+)">
|
@@ -1345,7 +1345,7 @@
|
|
1345
1345
|
<param pos="0" name="os.product" value="Linux"/>
|
1346
1346
|
<param pos="0" name="os.device" value="Video Conferencing"/>
|
1347
1347
|
<param pos="0" name="hw.vendor" value="Cisco"/>
|
1348
|
-
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
1348
|
+
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
1349
1349
|
<param pos="1" name="hw.product"/>
|
1350
1350
|
</fingerprint>
|
1351
1351
|
<fingerprint pattern="^Cisco TelePresence (?:Conductor|Supervisor)\s+((?:MCU )?(?:MSE )?\d+)">
|
@@ -1355,7 +1355,7 @@
|
|
1355
1355
|
<param pos="0" name="os.product" value="Linux"/>
|
1356
1356
|
<param pos="0" name="os.device" value="Video Conferencing"/>
|
1357
1357
|
<param pos="0" name="hw.vendor" value="Cisco"/>
|
1358
|
-
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
1358
|
+
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
1359
1359
|
<param pos="1" name="hw.product"/>
|
1360
1360
|
</fingerprint>
|
1361
1361
|
<fingerprint pattern="^Cisco TelePresence (?:Conductor|Supervisor)">
|
@@ -1367,7 +1367,7 @@
|
|
1367
1367
|
<param pos="0" name="os.device" value="Video Conferencing"/>
|
1368
1368
|
<param pos="0" name="hw.vendor" value="Cisco"/>
|
1369
1369
|
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
1370
|
-
</fingerprint>
|
1370
|
+
</fingerprint>
|
1371
1371
|
<fingerprint pattern="^TANDBERG Codec$">
|
1372
1372
|
<description>Tandberg Codec videoconferencing device</description>
|
1373
1373
|
<example>TANDBERG Codec</example>
|
@@ -1398,6 +1398,11 @@
|
|
1398
1398
|
<param pos="0" name="os.device" value="Firewall"/>
|
1399
1399
|
<param pos="1" name="os.version"/>
|
1400
1400
|
<param pos="0" name="os.cpe23" value="cpe:/o:cisco:adaptive_security_appliance:{os.version}"/>
|
1401
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
1402
|
+
<param pos="0" name="hw.family" value="Adaptive Security Appliance"/>
|
1403
|
+
<param pos="0" name="hw.product" value="Adaptive Security Appliance"/>
|
1404
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
1405
|
+
<param pos="0" name="hw.cpe23" value="cpe:/h:cisco:adaptive_security_appliance:-"/>
|
1401
1406
|
</fingerprint>
|
1402
1407
|
<fingerprint pattern="^Cisco 761 Software Version (.*) -.*$">
|
1403
1408
|
<description>Cisco 761</description>
|
@@ -1577,8 +1582,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
1577
1582
|
<param pos="0" name="os.certainty" value="0.85"/>
|
1578
1583
|
<param pos="0" name="os.vendor" value="Cisco"/>
|
1579
1584
|
<param pos="0" name="os.device" value="WAP"/>
|
1580
|
-
<param pos="0" name="os.product" value="Wireless
|
1581
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:cisco:wireless_lan_controller:-"/>
|
1585
|
+
<param pos="0" name="os.product" value="Wireless Controller"/>
|
1582
1586
|
</fingerprint>
|
1583
1587
|
<!--======================================================================
|
1584
1588
|
Cobox
|
@@ -3209,7 +3213,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
3209
3213
|
<param pos="4" name="os.version.version.version"/>
|
3210
3214
|
</fingerprint>
|
3211
3215
|
<fingerprint pattern="^Juniper Networks, Inc (MX-\d+) (\S+) REL$">
|
3212
|
-
<description>Juniper
|
3216
|
+
<description>Juniper WLC</description>
|
3213
3217
|
<example>Juniper Networks, Inc MX-8 7.6.2.3 REL</example>
|
3214
3218
|
<param pos="0" name="os.vendor" value="Juniper"/>
|
3215
3219
|
<param pos="0" name="os.device" value="WAP"/>
|
@@ -3601,6 +3605,15 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
3601
3605
|
<param pos="1" name="os.product"/>
|
3602
3606
|
<param pos="0" name="os.device" value="Printer"/>
|
3603
3607
|
</fingerprint>
|
3608
|
+
<fingerprint pattern="^KYOCERA Document Solutions Printing System$">
|
3609
|
+
<description>KYOCERA MITA Document Solutions printer</description>
|
3610
|
+
<example>KYOCERA Document Solutions Printing System</example>
|
3611
|
+
<param pos="0" name="os.certainty" value="0.8"/>
|
3612
|
+
<param pos="0" name="os.vendor" value="Kyocera Mita"/>
|
3613
|
+
<param pos="0" name="os.device" value="Printer"/>
|
3614
|
+
<param pos="0" name="hw.vendor" value="Kyocera Mita"/>
|
3615
|
+
<param pos="0" name="hw.device" value="Printer"/>
|
3616
|
+
</fingerprint>
|
3604
3617
|
<!--======================================================================
|
3605
3618
|
Lenel
|
3606
3619
|
=======================================================================-->
|
@@ -4345,15 +4358,16 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
4345
4358
|
<!--======================================================================
|
4346
4359
|
Netscaler
|
4347
4360
|
=======================================================================-->
|
4348
|
-
<fingerprint pattern="^NetScaler ([^:]+): Build ([^,]+), Date: .*$">
|
4361
|
+
<fingerprint pattern="^NetScaler NS([^:]+): Build ([^,]+), Date: .*$">
|
4349
4362
|
<description>Netscaler Appliance</description>
|
4350
|
-
<example>NetScaler NS10.0: Build 54.6.nc, Date: Apr 6 2012, 08:00:41 </example>
|
4363
|
+
<example os.version="10.0" os.version.version="54.6.nc">NetScaler NS10.0: Build 54.6.nc, Date: Apr 6 2012, 08:00:41 </example>
|
4351
4364
|
<example>NetScaler NS9.3: Build 57.5.nc, Date: Jun 27 2012, 19:37:56 </example>
|
4352
4365
|
<param pos="0" name="os.vendor" value="Citrix"/>
|
4353
4366
|
<param pos="0" name="os.family" value="Netscaler"/>
|
4354
4367
|
<param pos="0" name="os.device" value="Network Management Device"/>
|
4355
|
-
<param pos="
|
4356
|
-
<param pos="
|
4368
|
+
<param pos="0" name="os.product" value="NetScaler"/>
|
4369
|
+
<param pos="1" name="os.version"/>
|
4370
|
+
<param pos="2" name="os.version.version"/>
|
4357
4371
|
</fingerprint>
|
4358
4372
|
<!--======================================================================
|
4359
4373
|
NORTEL
|
@@ -5481,6 +5495,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5481
5495
|
<param pos="1" name="hw.product"/>
|
5482
5496
|
<param pos="2" name="hw.model"/>
|
5483
5497
|
<param pos="3" name="os.version"/>
|
5498
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:sonicwall:sonicos:{os.version}"/>
|
5484
5499
|
</fingerprint>
|
5485
5500
|
<fingerprint pattern="^SonicWALL (.*?)\s+\(([^\)]+)\)\s*$">
|
5486
5501
|
<description>SonicWall</description>
|
@@ -5495,8 +5510,9 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5495
5510
|
<param pos="0" name="os.vendor" value="SonicWall"/>
|
5496
5511
|
<param pos="0" name="os.device" value="Firewall"/>
|
5497
5512
|
<param pos="0" name="os.product" value="SonicOS"/>
|
5498
|
-
<param pos="
|
5499
|
-
<param pos="
|
5513
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:sonicwall:sonicos:-"/>
|
5514
|
+
<param pos="1" name="hw.family"/>
|
5515
|
+
<param pos="2" name="hw.product"/>
|
5500
5516
|
</fingerprint>
|
5501
5517
|
<!--======================================================================
|
5502
5518
|
SCO
|
@@ -5533,7 +5549,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5533
5549
|
<param pos="0" name="os.certainty" value="0.9"/>
|
5534
5550
|
<param pos="0" name="os.vendor" value="Shoretel"/>
|
5535
5551
|
<param pos="0" name="os.family" value="ShoreGear"/>
|
5536
|
-
<param pos="0" name="os.device" value="VoIP"/>
|
5552
|
+
<param pos="0" name="os.device" value="VoIP Switch"/>
|
5537
5553
|
<param pos="1" name="os.product"/>
|
5538
5554
|
</fingerprint>
|
5539
5555
|
<!--======================================================================
|
@@ -5851,7 +5867,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5851
5867
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5852
5868
|
<param pos="0" name="os.family" value="Solaris"/>
|
5853
5869
|
<param pos="0" name="os.product" value="Solaris"/>
|
5854
|
-
<param pos="0" name="os.arch" value="
|
5870
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5855
5871
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5856
5872
|
</fingerprint>
|
5857
5873
|
<fingerprint pattern="^Sun SNMP Agent, UltraAX-i2$">
|
@@ -5861,7 +5877,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5861
5877
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5862
5878
|
<param pos="0" name="os.family" value="Solaris"/>
|
5863
5879
|
<param pos="0" name="os.product" value="Solaris"/>
|
5864
|
-
<param pos="0" name="os.arch" value="
|
5880
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5865
5881
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5866
5882
|
</fingerprint>
|
5867
5883
|
<fingerprint pattern="^Sun SNMP Agent, Ultra-5_10$">
|
@@ -5871,7 +5887,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5871
5887
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5872
5888
|
<param pos="0" name="os.family" value="Solaris"/>
|
5873
5889
|
<param pos="0" name="os.product" value="Solaris"/>
|
5874
|
-
<param pos="0" name="os.arch" value="
|
5890
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5875
5891
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5876
5892
|
</fingerprint>
|
5877
5893
|
<fingerprint pattern="^Sun SNMP Agent, Ultra-1$">
|
@@ -5881,7 +5897,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5881
5897
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5882
5898
|
<param pos="0" name="os.family" value="Solaris"/>
|
5883
5899
|
<param pos="0" name="os.product" value="Solaris"/>
|
5884
|
-
<param pos="0" name="os.arch" value="
|
5900
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5885
5901
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5886
5902
|
</fingerprint>
|
5887
5903
|
<fingerprint pattern="^Sun SNMP Agent, Ultra-Enterprise$">
|
@@ -5891,7 +5907,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5891
5907
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5892
5908
|
<param pos="0" name="os.family" value="Solaris"/>
|
5893
5909
|
<param pos="0" name="os.product" value="Solaris"/>
|
5894
|
-
<param pos="0" name="os.arch" value="
|
5910
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5895
5911
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5896
5912
|
</fingerprint>
|
5897
5913
|
<fingerprint pattern="^Sun SNMP Agent, Sun-Fire-V240$">
|
@@ -5901,7 +5917,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5901
5917
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5902
5918
|
<param pos="0" name="os.family" value="Solaris"/>
|
5903
5919
|
<param pos="0" name="os.product" value="Solaris"/>
|
5904
|
-
<param pos="0" name="os.arch" value="
|
5920
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5905
5921
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5906
5922
|
</fingerprint>
|
5907
5923
|
<fingerprint pattern="^Sun SNMP Agent, Netra-T12$">
|
@@ -5911,7 +5927,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5911
5927
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5912
5928
|
<param pos="0" name="os.family" value="Solaris"/>
|
5913
5929
|
<param pos="0" name="os.product" value="Solaris"/>
|
5914
|
-
<param pos="0" name="os.arch" value="
|
5930
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5915
5931
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5916
5932
|
</fingerprint>
|
5917
5933
|
<fingerprint pattern="^Sun SNMP Agent, Ultra-25$">
|
@@ -5921,7 +5937,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5921
5937
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5922
5938
|
<param pos="0" name="os.family" value="Solaris"/>
|
5923
5939
|
<param pos="0" name="os.product" value="Solaris"/>
|
5924
|
-
<param pos="0" name="os.arch" value="
|
5940
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5925
5941
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5926
5942
|
</fingerprint>
|
5927
5943
|
<fingerprint pattern="^Sun SNMP Agent, Ultra-80$">
|
@@ -5931,7 +5947,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5931
5947
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5932
5948
|
<param pos="0" name="os.family" value="Solaris"/>
|
5933
5949
|
<param pos="0" name="os.product" value="Solaris"/>
|
5934
|
-
<param pos="0" name="os.arch" value="
|
5950
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5935
5951
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5936
5952
|
</fingerprint>
|
5937
5953
|
<fingerprint pattern="^Sun SNMP Agent, Ultra-60$">
|
@@ -5941,7 +5957,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5941
5957
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5942
5958
|
<param pos="0" name="os.family" value="Solaris"/>
|
5943
5959
|
<param pos="0" name="os.product" value="Solaris"/>
|
5944
|
-
<param pos="0" name="os.arch" value="
|
5960
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5945
5961
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5946
5962
|
</fingerprint>
|
5947
5963
|
<fingerprint pattern="^Sun SNMP Agent, UltraAX-MP$">
|
@@ -5951,7 +5967,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5951
5967
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5952
5968
|
<param pos="0" name="os.family" value="Solaris"/>
|
5953
5969
|
<param pos="0" name="os.product" value="Solaris"/>
|
5954
|
-
<param pos="0" name="os.arch" value="
|
5970
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5955
5971
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5956
5972
|
</fingerprint>
|
5957
5973
|
<!-- This is definitely a Netra T1 -->
|
@@ -5962,7 +5978,7 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
5962
5978
|
<param pos="0" name="os.vendor" value="Sun"/>
|
5963
5979
|
<param pos="0" name="os.family" value="Solaris"/>
|
5964
5980
|
<param pos="0" name="os.product" value="Solaris"/>
|
5965
|
-
<param pos="0" name="os.arch" value="
|
5981
|
+
<param pos="0" name="os.arch" value="Sparc"/>
|
5966
5982
|
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
5967
5983
|
</fingerprint>
|
5968
5984
|
<fingerprint pattern="^Sun SNMP Agent,.*$">
|
@@ -6434,8 +6450,8 @@ Copyright (c) 1995-2005 by Cisco Systems
|
|
6434
6450
|
<description>ZebraNet PrintServer</description>
|
6435
6451
|
<example>ZebraNet PrintServer</example>
|
6436
6452
|
<param pos="0" name="os.vendor" value="ZebraNet"/>
|
6437
|
-
<param pos="0" name="os.product" value="
|
6438
|
-
<param pos="0" name="os.device" value="
|
6453
|
+
<param pos="0" name="os.product" value="PrintServer"/>
|
6454
|
+
<param pos="0" name="os.device" value="Print server"/>
|
6439
6455
|
</fingerprint>
|
6440
6456
|
<!--======================================================================
|
6441
6457
|
ZYXEL
|
data/xml/ssh_banners.xml
CHANGED
@@ -74,7 +74,7 @@
|
|
74
74
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
75
75
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
76
76
|
<param pos="0" name="os.version" value="4.3"/>
|
77
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
77
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:4.3"/>
|
78
78
|
</fingerprint>
|
79
79
|
<fingerprint pattern="^OpenSSH_(2\.3\.0) (FreeBSD localisations 20010713)$">
|
80
80
|
<description>OpenSSH running on FreeBSD 4.4</description>
|
@@ -89,7 +89,7 @@
|
|
89
89
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
90
90
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
91
91
|
<param pos="0" name="os.version" value="4.4"/>
|
92
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
92
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:4.4"/>
|
93
93
|
</fingerprint>
|
94
94
|
<fingerprint pattern="^OpenSSH_(2\.9) (FreeBSD localisations 20011202)$">
|
95
95
|
<description>OpenSSH running on FreeBSD 4.5</description>
|
@@ -104,7 +104,7 @@
|
|
104
104
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
105
105
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
106
106
|
<param pos="0" name="os.version" value="4.5"/>
|
107
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
107
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:4.5"/>
|
108
108
|
</fingerprint>
|
109
109
|
<fingerprint pattern="^OpenSSH_(3\.4p1) (FreeBSD 20020702)$">
|
110
110
|
<description>OpenSSH running on FreeBSD 4.6.2</description>
|
@@ -119,7 +119,7 @@
|
|
119
119
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
120
120
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
121
121
|
<param pos="0" name="os.version" value="4.6.2"/>
|
122
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
122
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:4.6.2"/>
|
123
123
|
</fingerprint>
|
124
124
|
<fingerprint pattern="^OpenSSH_(2\.9) (FreeBSD localisations 20020307)$">
|
125
125
|
<description>OpenSSH running on FreeBSD 4.6</description>
|
@@ -134,7 +134,7 @@
|
|
134
134
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
135
135
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
136
136
|
<param pos="0" name="os.version" value="4.6"/>
|
137
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
137
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:4.6"/>
|
138
138
|
</fingerprint>
|
139
139
|
<fingerprint pattern="^OpenSSH_(3\.4p1) (FreeBSD-20020702)$">
|
140
140
|
<description>OpenSSH running on FreeBSD 4.7</description>
|
@@ -149,7 +149,7 @@
|
|
149
149
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
150
150
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
151
151
|
<param pos="0" name="os.version" value="4.7"/>
|
152
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
152
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:4.7"/>
|
153
153
|
</fingerprint>
|
154
154
|
<fingerprint pattern="^OpenSSH_(3\.5p1) (FreeBSD-20030201)$">
|
155
155
|
<description>OpenSSH running on FreeBSD 4.8</description>
|
@@ -164,7 +164,7 @@
|
|
164
164
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
165
165
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
166
166
|
<param pos="0" name="os.version" value="4.8"/>
|
167
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
167
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:4.8"/>
|
168
168
|
</fingerprint>
|
169
169
|
<!-- Multiple minor version match, assert the oldest version -->
|
170
170
|
<fingerprint pattern="^OpenSSH_(3\.5p1) (FreeBSD-20030924)$">
|
@@ -180,7 +180,7 @@
|
|
180
180
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
181
181
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
182
182
|
<param pos="0" name="os.version" value="4.9"/>
|
183
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
183
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:4.9"/>
|
184
184
|
</fingerprint>
|
185
185
|
<fingerprint pattern="^OpenSSH_(3\.5p1) (FreeBSD-20060930)$">
|
186
186
|
<description>OpenSSH running on FreeBSD 4.11</description>
|
@@ -195,7 +195,7 @@
|
|
195
195
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
196
196
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
197
197
|
<param pos="0" name="os.version" value="4.11"/>
|
198
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
198
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:4.11"/>
|
199
199
|
</fingerprint>
|
200
200
|
<fingerprint pattern="^OpenSSH_(3\.5p1) (FreeBSD-20021029)$">
|
201
201
|
<description>OpenSSH running on FreeBSD 5.0</description>
|
@@ -210,7 +210,7 @@
|
|
210
210
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
211
211
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
212
212
|
<param pos="0" name="os.version" value="5.0"/>
|
213
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
213
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:5.0"/>
|
214
214
|
</fingerprint>
|
215
215
|
<fingerprint pattern="^OpenSSH_(3\.6\.1p1) (FreeBSD-20030423)$">
|
216
216
|
<description>OpenSSH running on FreeBSD 5.1</description>
|
@@ -225,7 +225,7 @@
|
|
225
225
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
226
226
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
227
227
|
<param pos="0" name="os.version" value="5.1"/>
|
228
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
228
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:5.1"/>
|
229
229
|
</fingerprint>
|
230
230
|
<fingerprint pattern="^OpenSSH_(3\.6\.1p1) (FreeBSD-20030924)$">
|
231
231
|
<description>OpenSSH running on FreeBSD 5.2</description>
|
@@ -240,7 +240,7 @@
|
|
240
240
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
241
241
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
242
242
|
<param pos="0" name="os.version" value="5.2"/>
|
243
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
243
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:5.2"/>
|
244
244
|
</fingerprint>
|
245
245
|
<!-- Multiple minor version match, assert the oldest version -->
|
246
246
|
<fingerprint pattern="^OpenSSH_(3\.8\.1p1) (FreeBSD-20040419)$">
|
@@ -256,7 +256,7 @@
|
|
256
256
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
257
257
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
258
258
|
<param pos="0" name="os.version" value="5.3"/>
|
259
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
259
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:5.3"/>
|
260
260
|
</fingerprint>
|
261
261
|
<fingerprint pattern="^OpenSSH_(3\.8\.1p1) (FreeBSD-20060123)$">
|
262
262
|
<description>OpenSSH running on FreeBSD 5.5</description>
|
@@ -271,7 +271,7 @@
|
|
271
271
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
272
272
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
273
273
|
<param pos="0" name="os.version" value="5.5"/>
|
274
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
274
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:5.5"/>
|
275
275
|
</fingerprint>
|
276
276
|
<!-- Multiple minor version match, assert the oldest version -->
|
277
277
|
<fingerprint pattern="^OpenSSH_(4\.2p1) (FreeBSD-20050903)$">
|
@@ -287,7 +287,7 @@
|
|
287
287
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
288
288
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
289
289
|
<param pos="0" name="os.version" value="6.0"/>
|
290
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
290
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:6.0"/>
|
291
291
|
</fingerprint>
|
292
292
|
<!-- Spans major versions, do not assert a version number -->
|
293
293
|
<fingerprint pattern="^OpenSSH_(4\.5p1) (FreeBSD-20061110)$">
|
@@ -318,7 +318,7 @@
|
|
318
318
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
319
319
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
320
320
|
<param pos="0" name="os.version" value="7.1"/>
|
321
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
321
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:7.1"/>
|
322
322
|
</fingerprint>
|
323
323
|
<fingerprint pattern="^OpenSSH_(5\.2p1) (FreeBSD-20090522)$">
|
324
324
|
<description>OpenSSH running on FreeBSD 8.0</description>
|
@@ -333,7 +333,7 @@
|
|
333
333
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
334
334
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
335
335
|
<param pos="0" name="os.version" value="8.0"/>
|
336
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
336
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:8.0"/>
|
337
337
|
</fingerprint>
|
338
338
|
<!-- Multiple minor version match, assert the oldest version -->
|
339
339
|
<fingerprint pattern="^OpenSSH_(5\.4p1) (FreeBSD-20100308)$">
|
@@ -349,7 +349,7 @@
|
|
349
349
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
350
350
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
351
351
|
<param pos="0" name="os.version" value="8.1"/>
|
352
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
352
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:8.1"/>
|
353
353
|
</fingerprint>
|
354
354
|
<fingerprint pattern="^OpenSSH_(5\.4p1_hpn13v11) (FreeBSD-20100308)$">
|
355
355
|
<description>OpenSSH running on FreeBSD 8.3</description>
|
@@ -364,7 +364,7 @@
|
|
364
364
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
365
365
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
366
366
|
<param pos="0" name="os.version" value="8.3"/>
|
367
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
367
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:8.3"/>
|
368
368
|
</fingerprint>
|
369
369
|
<fingerprint pattern="^OpenSSH_(6\.1_hpn13v11) (FreeBSD-20120901)$">
|
370
370
|
<description>OpenSSH running on FreeBSD 8.4</description>
|
@@ -379,7 +379,7 @@
|
|
379
379
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
380
380
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
381
381
|
<param pos="0" name="os.version" value="8.4"/>
|
382
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
382
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:8.4"/>
|
383
383
|
</fingerprint>
|
384
384
|
<!-- Multiple minor version match, assert the oldest version -->
|
385
385
|
<fingerprint pattern="^OpenSSH_(5\.8p2_hpn13v11) (FreeBSD-20110503)$">
|
@@ -395,7 +395,7 @@
|
|
395
395
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
396
396
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
397
397
|
<param pos="0" name="os.version" value="9.0"/>
|
398
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
398
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:9.0"/>
|
399
399
|
</fingerprint>
|
400
400
|
<fingerprint pattern="^OpenSSH_(6\.2_hpn13v11) (FreeBSD-20130515)$">
|
401
401
|
<description>OpenSSH running on FreeBSD 9.2</description>
|
@@ -410,7 +410,7 @@
|
|
410
410
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
411
411
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
412
412
|
<param pos="0" name="os.version" value="9.2"/>
|
413
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
413
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:9.2"/>
|
414
414
|
</fingerprint>
|
415
415
|
<!-- Spans major versions, do not assert a version number -->
|
416
416
|
<fingerprint pattern="^OpenSSH_(6\.6\.1_hpn13v11) (FreeBSD-20140420)$">
|
@@ -440,7 +440,7 @@
|
|
440
440
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
441
441
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
442
442
|
<param pos="0" name="os.version" value="10.0"/>
|
443
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
443
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:10.0"/>
|
444
444
|
</fingerprint>
|
445
445
|
<!-- Spans major versions, do not assert a version number -->
|
446
446
|
<fingerprint pattern="^OpenSSH_(7\.2) (FreeBSD-20160310)$">
|
@@ -470,7 +470,7 @@
|
|
470
470
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
471
471
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
472
472
|
<param pos="0" name="os.version" value="10.4"/>
|
473
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
473
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:10.4"/>
|
474
474
|
</fingerprint>
|
475
475
|
<fingerprint pattern="^OpenSSH_(7\.2) (FreeBSD-20161230)$">
|
476
476
|
<description>OpenSSH running on FreeBSD 11.1</description>
|
@@ -485,7 +485,7 @@
|
|
485
485
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
486
486
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
487
487
|
<param pos="0" name="os.version" value="11.1"/>
|
488
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
488
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:11.1"/>
|
489
489
|
</fingerprint>
|
490
490
|
<!-- Multiple minor version match, assert the oldest version -->
|
491
491
|
<fingerprint pattern="^OpenSSH_(7\.5) (FreeBSD-20170903)$">
|
@@ -501,7 +501,7 @@
|
|
501
501
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
502
502
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
503
503
|
<param pos="0" name="os.version" value="11.2"/>
|
504
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
504
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:11.2"/>
|
505
505
|
</fingerprint>
|
506
506
|
<fingerprint pattern="^OpenSSH_(7\.8) (FreeBSD-20180909)$">
|
507
507
|
<description>OpenSSH running on FreeBSD 12.0</description>
|
@@ -516,7 +516,7 @@
|
|
516
516
|
<param pos="0" name="os.family" value="FreeBSD"/>
|
517
517
|
<param pos="0" name="os.product" value="FreeBSD"/>
|
518
518
|
<param pos="0" name="os.version" value="12.0"/>
|
519
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:
|
519
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:freebsd:freebsd:12.0"/>
|
520
520
|
</fingerprint>
|
521
521
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(FreeBSD[ -].*)$">
|
522
522
|
<description>OpenSSH running on FreeBSD</description>
|
@@ -562,7 +562,7 @@
|
|
562
562
|
<param pos="0" name="os.family" value="Linux"/>
|
563
563
|
<param pos="0" name="os.product" value="Linux"/>
|
564
564
|
<param pos="0" name="os.version" value="4.10"/>
|
565
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
565
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:4.10"/>
|
566
566
|
</fingerprint>
|
567
567
|
<fingerprint pattern="^OpenSSH_(3\.9p1) (Debian-1ubuntu\d+(?:\.\d+)?)$">
|
568
568
|
<description>OpenSSH running on Ubuntu 5.04</description>
|
@@ -577,7 +577,7 @@
|
|
577
577
|
<param pos="0" name="os.family" value="Linux"/>
|
578
578
|
<param pos="0" name="os.product" value="Linux"/>
|
579
579
|
<param pos="0" name="os.version" value="5.04"/>
|
580
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
580
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:5.04"/>
|
581
581
|
</fingerprint>
|
582
582
|
<fingerprint pattern="^OpenSSH_(4\.1p1) (Debian-7ubuntu\d+(?:\.\d+)?)$">
|
583
583
|
<description>OpenSSH running on Ubuntu 5.10</description>
|
@@ -592,7 +592,7 @@
|
|
592
592
|
<param pos="0" name="os.family" value="Linux"/>
|
593
593
|
<param pos="0" name="os.product" value="Linux"/>
|
594
594
|
<param pos="0" name="os.version" value="5.10"/>
|
595
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
595
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:5.10"/>
|
596
596
|
</fingerprint>
|
597
597
|
<fingerprint pattern="^OpenSSH_(4\.2p1) (Debian-7ubuntu\d+(?:\.\d+)?)$">
|
598
598
|
<description>OpenSSH running on Ubuntu 6.04</description>
|
@@ -608,7 +608,7 @@
|
|
608
608
|
<param pos="0" name="os.family" value="Linux"/>
|
609
609
|
<param pos="0" name="os.product" value="Linux"/>
|
610
610
|
<param pos="0" name="os.version" value="6.04"/>
|
611
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
611
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:6.04"/>
|
612
612
|
</fingerprint>
|
613
613
|
<fingerprint pattern="^OpenSSH_(4\.3p2) (Debian-8ubuntu\d+(?:\.\d+)?)$">
|
614
614
|
<description>OpenSSH running on Ubuntu 7.04</description>
|
@@ -623,7 +623,7 @@
|
|
623
623
|
<param pos="0" name="os.family" value="Linux"/>
|
624
624
|
<param pos="0" name="os.product" value="Linux"/>
|
625
625
|
<param pos="0" name="os.version" value="7.04"/>
|
626
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
626
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:7.04"/>
|
627
627
|
</fingerprint>
|
628
628
|
<fingerprint pattern="^OpenSSH_(4\.6p1) (Debian-5ubuntu\d+(?:\.\d+)?)$">
|
629
629
|
<description>OpenSSH running on Ubuntu 7.10</description>
|
@@ -641,7 +641,7 @@
|
|
641
641
|
<param pos="0" name="os.family" value="Linux"/>
|
642
642
|
<param pos="0" name="os.product" value="Linux"/>
|
643
643
|
<param pos="0" name="os.version" value="7.10"/>
|
644
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
644
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:7.10"/>
|
645
645
|
</fingerprint>
|
646
646
|
<fingerprint pattern="^OpenSSH_(4\.7p1) (Debian-8ubuntu\d+(?:\.\d+)?)$">
|
647
647
|
<description>OpenSSH running on Ubuntu 8.04</description>
|
@@ -657,7 +657,7 @@
|
|
657
657
|
<param pos="0" name="os.family" value="Linux"/>
|
658
658
|
<param pos="0" name="os.product" value="Linux"/>
|
659
659
|
<param pos="0" name="os.version" value="8.04"/>
|
660
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
660
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:8.04"/>
|
661
661
|
</fingerprint>
|
662
662
|
<fingerprint pattern="^OpenSSH_(5\.1p1) (Debian-3ubuntu\d+(?:\.\d+)?)$">
|
663
663
|
<description>OpenSSH running on Ubuntu 8.10</description>
|
@@ -672,7 +672,7 @@
|
|
672
672
|
<param pos="0" name="os.family" value="Linux"/>
|
673
673
|
<param pos="0" name="os.product" value="Linux"/>
|
674
674
|
<param pos="0" name="os.version" value="8.10"/>
|
675
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
675
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:8.10"/>
|
676
676
|
</fingerprint>
|
677
677
|
<fingerprint pattern="^OpenSSH_(5\.1p1) (Debian-5ubuntu\d+(?:\.\d+)?)$">
|
678
678
|
<description>OpenSSH running on Ubuntu 9.04</description>
|
@@ -687,7 +687,7 @@
|
|
687
687
|
<param pos="0" name="os.family" value="Linux"/>
|
688
688
|
<param pos="0" name="os.product" value="Linux"/>
|
689
689
|
<param pos="0" name="os.version" value="9.04"/>
|
690
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
690
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:9.04"/>
|
691
691
|
</fingerprint>
|
692
692
|
<fingerprint pattern="^OpenSSH_(5\.1p1) (Debian-6ubuntu\d+(?:\.\d+)?)$">
|
693
693
|
<description>OpenSSH running on Ubuntu 9.10</description>
|
@@ -702,7 +702,7 @@
|
|
702
702
|
<param pos="0" name="os.family" value="Linux"/>
|
703
703
|
<param pos="0" name="os.product" value="Linux"/>
|
704
704
|
<param pos="0" name="os.version" value="9.10"/>
|
705
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
705
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:9.10"/>
|
706
706
|
</fingerprint>
|
707
707
|
<fingerprint pattern="^OpenSSH_(5\.3p1) (Debian-3ubuntu\d+(?:\.\d+)?)$">
|
708
708
|
<description>OpenSSH running on Ubuntu 10.04 (lucid)</description>
|
@@ -722,7 +722,7 @@
|
|
722
722
|
<param pos="0" name="os.family" value="Linux"/>
|
723
723
|
<param pos="0" name="os.product" value="Linux"/>
|
724
724
|
<param pos="0" name="os.version" value="10.04"/>
|
725
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
725
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:10.04"/>
|
726
726
|
</fingerprint>
|
727
727
|
<fingerprint pattern="^OpenSSH_(5\.5p1) (Debian-4ubuntu\d+(?:\.\d+)?)$">
|
728
728
|
<description>OpenSSH running on Ubuntu 10.10</description>
|
@@ -739,7 +739,7 @@
|
|
739
739
|
<param pos="0" name="os.family" value="Linux"/>
|
740
740
|
<param pos="0" name="os.product" value="Linux"/>
|
741
741
|
<param pos="0" name="os.version" value="10.10"/>
|
742
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
742
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:10.10"/>
|
743
743
|
</fingerprint>
|
744
744
|
<fingerprint pattern="^OpenSSH_(5\.8p1) (Debian-1ubuntu\d(?:\.\d)?)$">
|
745
745
|
<description>OpenSSH running on Ubuntu 11.04</description>
|
@@ -754,7 +754,7 @@
|
|
754
754
|
<param pos="0" name="os.family" value="Linux"/>
|
755
755
|
<param pos="0" name="os.product" value="Linux"/>
|
756
756
|
<param pos="0" name="os.version" value="11.04"/>
|
757
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
757
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:11.04"/>
|
758
758
|
</fingerprint>
|
759
759
|
<fingerprint pattern="^OpenSSH_(5\.8p1) (Debian-7ubuntu\d(?:\.\d)?)$">
|
760
760
|
<description>OpenSSH running on Ubuntu 11.10</description>
|
@@ -769,7 +769,7 @@
|
|
769
769
|
<param pos="0" name="os.family" value="Linux"/>
|
770
770
|
<param pos="0" name="os.product" value="Linux"/>
|
771
771
|
<param pos="0" name="os.version" value="11.10"/>
|
772
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
772
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:11.10"/>
|
773
773
|
</fingerprint>
|
774
774
|
<fingerprint pattern="^OpenSSH_(5\.9p1) (Debian-5ubuntu\d(?:\.\d)?)$">
|
775
775
|
<description>OpenSSH running on Ubuntu 12.04</description>
|
@@ -785,7 +785,7 @@
|
|
785
785
|
<param pos="0" name="os.family" value="Linux"/>
|
786
786
|
<param pos="0" name="os.product" value="Linux"/>
|
787
787
|
<param pos="0" name="os.version" value="12.04"/>
|
788
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
788
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:12.04"/>
|
789
789
|
</fingerprint>
|
790
790
|
<fingerprint pattern="^OpenSSH_(6\.0p1) (Debian-3ubuntu\d(?:\.\d)?)$">
|
791
791
|
<description>OpenSSH running on Ubuntu 12.10</description>
|
@@ -801,7 +801,7 @@
|
|
801
801
|
<param pos="0" name="os.family" value="Linux"/>
|
802
802
|
<param pos="0" name="os.product" value="Linux"/>
|
803
803
|
<param pos="0" name="os.version" value="12.10"/>
|
804
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
804
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:12.10"/>
|
805
805
|
</fingerprint>
|
806
806
|
<fingerprint pattern="^OpenSSH_(6\.1p1) (Debian-4)$">
|
807
807
|
<description>OpenSSH running on Ubuntu 13.04</description>
|
@@ -816,7 +816,7 @@
|
|
816
816
|
<param pos="0" name="os.family" value="Linux"/>
|
817
817
|
<param pos="0" name="os.product" value="Linux"/>
|
818
818
|
<param pos="0" name="os.version" value="13.04"/>
|
819
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
819
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:13.04"/>
|
820
820
|
</fingerprint>
|
821
821
|
<fingerprint pattern="^OpenSSH_(6\.2p2) (Ubuntu-6unbuntu\d(?:\.\d)?)$">
|
822
822
|
<description>OpenSSH running on Ubuntu 13.10</description>
|
@@ -831,7 +831,7 @@
|
|
831
831
|
<param pos="0" name="os.family" value="Linux"/>
|
832
832
|
<param pos="0" name="os.product" value="Linux"/>
|
833
833
|
<param pos="0" name="os.version" value="13.10"/>
|
834
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
834
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:13.10"/>
|
835
835
|
</fingerprint>
|
836
836
|
<fingerprint pattern="^OpenSSH_(\d+\.\d+(?:\.\d+)?(?:p\d+)?)[_|-](hpn\d+v\d+)$">
|
837
837
|
<description>OpenSSH with HPN patches</description>
|
@@ -859,7 +859,7 @@
|
|
859
859
|
<param pos="0" name="os.family" value="Linux"/>
|
860
860
|
<param pos="0" name="os.product" value="Linux"/>
|
861
861
|
<param pos="0" name="os.version" value="14.04"/>
|
862
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
862
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:14.04"/>
|
863
863
|
</fingerprint>
|
864
864
|
<fingerprint pattern="^OpenSSH_(6\.6\.1p1) (Ubuntu-8)$">
|
865
865
|
<description>OpenSSH running on Ubuntu 14.10</description>
|
@@ -874,7 +874,7 @@
|
|
874
874
|
<param pos="0" name="os.family" value="Linux"/>
|
875
875
|
<param pos="0" name="os.product" value="Linux"/>
|
876
876
|
<param pos="0" name="os.version" value="14.10"/>
|
877
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
877
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:14.10"/>
|
878
878
|
</fingerprint>
|
879
879
|
<fingerprint pattern="^OpenSSH_(6\.7p1) (Ubuntu-5ubuntu\d(?:\.\d)?)$">
|
880
880
|
<description>OpenSSH running on Ubuntu 15.04 (vivid)</description>
|
@@ -889,7 +889,7 @@
|
|
889
889
|
<param pos="0" name="os.family" value="Linux"/>
|
890
890
|
<param pos="0" name="os.product" value="Linux"/>
|
891
891
|
<param pos="0" name="os.version" value="15.04"/>
|
892
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
892
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:15.04"/>
|
893
893
|
</fingerprint>
|
894
894
|
<fingerprint pattern="^OpenSSH_(6\.9p1) (Ubuntu-2)$">
|
895
895
|
<description>OpenSSH running on Ubuntu 15.10</description>
|
@@ -904,7 +904,7 @@
|
|
904
904
|
<param pos="0" name="os.family" value="Linux"/>
|
905
905
|
<param pos="0" name="os.product" value="Linux"/>
|
906
906
|
<param pos="0" name="os.version" value="15.10"/>
|
907
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
907
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:15.10"/>
|
908
908
|
</fingerprint>
|
909
909
|
<fingerprint pattern="^OpenSSH_(7\.2p2) (Ubuntu-4ubuntu\d(?:\.\d)?)$">
|
910
910
|
<description>OpenSSH running on Ubuntu 16.04 (vivid)</description>
|
@@ -919,7 +919,7 @@
|
|
919
919
|
<param pos="0" name="os.family" value="Linux"/>
|
920
920
|
<param pos="0" name="os.product" value="Linux"/>
|
921
921
|
<param pos="0" name="os.version" value="16.04"/>
|
922
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
922
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:16.04"/>
|
923
923
|
</fingerprint>
|
924
924
|
<fingerprint pattern="^OpenSSH_(7\.3p1) (Ubuntu-1)$">
|
925
925
|
<description>OpenSSH running on Ubuntu 16.10</description>
|
@@ -934,7 +934,7 @@
|
|
934
934
|
<param pos="0" name="os.family" value="Linux"/>
|
935
935
|
<param pos="0" name="os.product" value="Linux"/>
|
936
936
|
<param pos="0" name="os.version" value="16.10"/>
|
937
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
937
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:16.10"/>
|
938
938
|
</fingerprint>
|
939
939
|
<fingerprint pattern="^OpenSSH_(7\.4p1) (Ubuntu-10)$">
|
940
940
|
<description>OpenSSH running on Ubuntu 17.04</description>
|
@@ -949,7 +949,7 @@
|
|
949
949
|
<param pos="0" name="os.family" value="Linux"/>
|
950
950
|
<param pos="0" name="os.product" value="Linux"/>
|
951
951
|
<param pos="0" name="os.version" value="17.04"/>
|
952
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
952
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:17.04"/>
|
953
953
|
</fingerprint>
|
954
954
|
<fingerprint pattern="^OpenSSH_(7\.5p1) (Ubuntu-10ubuntu\d(?:\.\d)?)$">
|
955
955
|
<description>OpenSSH running on Ubuntu 17.10</description>
|
@@ -964,7 +964,7 @@
|
|
964
964
|
<param pos="0" name="os.family" value="Linux"/>
|
965
965
|
<param pos="0" name="os.product" value="Linux"/>
|
966
966
|
<param pos="0" name="os.version" value="17.10"/>
|
967
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
967
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:17.10"/>
|
968
968
|
</fingerprint>
|
969
969
|
<fingerprint pattern="^OpenSSH_(7\.6p1) (Ubuntu-4ubuntu\d(?:\.\d)?)$">
|
970
970
|
<description>OpenSSH running on Ubuntu 18.04</description>
|
@@ -979,7 +979,7 @@
|
|
979
979
|
<param pos="0" name="os.family" value="Linux"/>
|
980
980
|
<param pos="0" name="os.product" value="Linux"/>
|
981
981
|
<param pos="0" name="os.version" value="18.04"/>
|
982
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
982
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:18.04"/>
|
983
983
|
</fingerprint>
|
984
984
|
<fingerprint pattern="^OpenSSH_(7\.7p1) (Ubuntu-4)$">
|
985
985
|
<description>OpenSSH running on Ubuntu 18.10</description>
|
@@ -994,7 +994,7 @@
|
|
994
994
|
<param pos="0" name="os.family" value="Linux"/>
|
995
995
|
<param pos="0" name="os.product" value="Linux"/>
|
996
996
|
<param pos="0" name="os.version" value="18.10"/>
|
997
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
997
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:18.10"/>
|
998
998
|
</fingerprint>
|
999
999
|
<fingerprint pattern="^OpenSSH_(7\.9p1) (Ubuntu-10)$">
|
1000
1000
|
<description>OpenSSH running on Ubuntu 19.04</description>
|
@@ -1009,7 +1009,7 @@
|
|
1009
1009
|
<param pos="0" name="os.family" value="Linux"/>
|
1010
1010
|
<param pos="0" name="os.product" value="Linux"/>
|
1011
1011
|
<param pos="0" name="os.version" value="19.04"/>
|
1012
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
1012
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:19.04"/>
|
1013
1013
|
</fingerprint>
|
1014
1014
|
<fingerprint pattern="^OpenSSH_(8\.0p1) (Ubuntu-6build1)$">
|
1015
1015
|
<description>OpenSSH running on Ubuntu 19.10</description>
|
@@ -1024,7 +1024,7 @@
|
|
1024
1024
|
<param pos="0" name="os.family" value="Linux"/>
|
1025
1025
|
<param pos="0" name="os.product" value="Linux"/>
|
1026
1026
|
<param pos="0" name="os.version" value="19.10"/>
|
1027
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
1027
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:19.10"/>
|
1028
1028
|
</fingerprint>
|
1029
1029
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Ubuntu-\d\d?)$">
|
1030
1030
|
<description>OpenSSH running on Ubuntu (unknown release)</description>
|
@@ -1069,7 +1069,7 @@
|
|
1069
1069
|
<param pos="0" name="os.family" value="Linux"/>
|
1070
1070
|
<param pos="0" name="os.product" value="Linux"/>
|
1071
1071
|
<param pos="0" name="os.version" value="3.0"/>
|
1072
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1072
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:3.0"/>
|
1073
1073
|
</fingerprint>
|
1074
1074
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Debian.+sarge.*)$">
|
1075
1075
|
<description>OpenSSH running on Debian 3.1 (sarge)</description>
|
@@ -1084,7 +1084,7 @@
|
|
1084
1084
|
<param pos="0" name="os.family" value="Linux"/>
|
1085
1085
|
<param pos="0" name="os.product" value="Linux"/>
|
1086
1086
|
<param pos="0" name="os.version" value="3.1"/>
|
1087
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1087
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:3.1"/>
|
1088
1088
|
</fingerprint>
|
1089
1089
|
<fingerprint pattern="^OpenSSH_(4\.3p2) (Debian-9.*)$">
|
1090
1090
|
<description>OpenSSH running on Debian 4.0 (etch)</description>
|
@@ -1100,7 +1100,7 @@
|
|
1100
1100
|
<param pos="0" name="os.family" value="Linux"/>
|
1101
1101
|
<param pos="0" name="os.product" value="Linux"/>
|
1102
1102
|
<param pos="0" name="os.version" value="4.0"/>
|
1103
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1103
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:4.0"/>
|
1104
1104
|
</fingerprint>
|
1105
1105
|
<fingerprint pattern="^OpenSSH_(5\.1p1) (Debian-5)$">
|
1106
1106
|
<description>OpenSSH running on Debian 5.0 (also 5.10)</description>
|
@@ -1115,7 +1115,7 @@
|
|
1115
1115
|
<param pos="0" name="os.family" value="Linux"/>
|
1116
1116
|
<param pos="0" name="os.product" value="Linux"/>
|
1117
1117
|
<param pos="0" name="os.version" value="5.0"/>
|
1118
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1118
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:5.0"/>
|
1119
1119
|
</fingerprint>
|
1120
1120
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Debian-\d+[+~]squeeze.*)$">
|
1121
1121
|
<description>OpenSSH running on Debian 6.0 (squeeze)</description>
|
@@ -1132,7 +1132,7 @@
|
|
1132
1132
|
<param pos="0" name="os.family" value="Linux"/>
|
1133
1133
|
<param pos="0" name="os.product" value="Linux"/>
|
1134
1134
|
<param pos="0" name="os.version" value="6.0"/>
|
1135
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1135
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:6.0"/>
|
1136
1136
|
</fingerprint>
|
1137
1137
|
<fingerprint pattern="^OpenSSH_(5\.5p1) (Debian-6)$">
|
1138
1138
|
<description>OpenSSH running on Debian 6.0 (w/o squeeze in banner)</description>
|
@@ -1147,7 +1147,7 @@
|
|
1147
1147
|
<param pos="0" name="os.family" value="Linux"/>
|
1148
1148
|
<param pos="0" name="os.product" value="Linux"/>
|
1149
1149
|
<param pos="0" name="os.version" value="6.0"/>
|
1150
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1150
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:6.0"/>
|
1151
1151
|
</fingerprint>
|
1152
1152
|
<!-- More specific than and should preceed the 7.0 match -->
|
1153
1153
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Debian-4\+deb7u2)$">
|
@@ -1163,7 +1163,7 @@
|
|
1163
1163
|
<param pos="0" name="os.family" value="Linux"/>
|
1164
1164
|
<param pos="0" name="os.product" value="Linux"/>
|
1165
1165
|
<param pos="0" name="os.version" value="7.8"/>
|
1166
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1166
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:7.8"/>
|
1167
1167
|
</fingerprint>
|
1168
1168
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Debian-4(?:\+deb7u\d+)?)$">
|
1169
1169
|
<description>OpenSSH running on Debian 7.x (wheezy)</description>
|
@@ -1179,7 +1179,7 @@
|
|
1179
1179
|
<param pos="0" name="os.family" value="Linux"/>
|
1180
1180
|
<param pos="0" name="os.product" value="Linux"/>
|
1181
1181
|
<param pos="0" name="os.version" value="7.0"/>
|
1182
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1182
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:7.0"/>
|
1183
1183
|
</fingerprint>
|
1184
1184
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Debian-\d~bpo7\d?\+\d+)$">
|
1185
1185
|
<description>OpenSSH backport running on Debian 7.x (wheezy)</description>
|
@@ -1195,7 +1195,7 @@
|
|
1195
1195
|
<param pos="0" name="os.family" value="Linux"/>
|
1196
1196
|
<param pos="0" name="os.product" value="Linux"/>
|
1197
1197
|
<param pos="0" name="os.version" value="7.0"/>
|
1198
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1198
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:7.0"/>
|
1199
1199
|
</fingerprint>
|
1200
1200
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Debian-5\+deb8u\d+.*)$">
|
1201
1201
|
<description>OpenSSH running on Debian 8.x (jessie)</description>
|
@@ -1212,7 +1212,7 @@
|
|
1212
1212
|
<param pos="0" name="os.family" value="Linux"/>
|
1213
1213
|
<param pos="0" name="os.product" value="Linux"/>
|
1214
1214
|
<param pos="0" name="os.version" value="8.0"/>
|
1215
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1215
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:8.0"/>
|
1216
1216
|
</fingerprint>
|
1217
1217
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Debian-\d\d?\+deb9u\d+)$">
|
1218
1218
|
<description>OpenSSH running on Debian 9.x (stretch)</description>
|
@@ -1228,7 +1228,7 @@
|
|
1228
1228
|
<param pos="0" name="os.family" value="Linux"/>
|
1229
1229
|
<param pos="0" name="os.product" value="Linux"/>
|
1230
1230
|
<param pos="0" name="os.version" value="9.0"/>
|
1231
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1231
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:9.0"/>
|
1232
1232
|
</fingerprint>
|
1233
1233
|
<fingerprint pattern="^OpenSSH_(7\.9p1) (Debian-10|Debian-\d\d?\+deb10u\d+)$">
|
1234
1234
|
<description>OpenSSH running on Debian 10.x (buster)</description>
|
@@ -1244,7 +1244,7 @@
|
|
1244
1244
|
<param pos="0" name="os.family" value="Linux"/>
|
1245
1245
|
<param pos="0" name="os.product" value="Linux"/>
|
1246
1246
|
<param pos="0" name="os.version" value="10.0"/>
|
1247
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1247
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:10.0"/>
|
1248
1248
|
</fingerprint>
|
1249
1249
|
<fingerprint pattern="^OpenSSH_(8\.1p1) (Debian-1|Debian-\d\d?\+deb11u\d+)$">
|
1250
1250
|
<description>OpenSSH running on Debian 11.x (bullseye)</description>
|
@@ -1260,7 +1260,7 @@
|
|
1260
1260
|
<param pos="0" name="os.family" value="Linux"/>
|
1261
1261
|
<param pos="0" name="os.product" value="Linux"/>
|
1262
1262
|
<param pos="0" name="os.version" value="11.0"/>
|
1263
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:
|
1263
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:11.0"/>
|
1264
1264
|
</fingerprint>
|
1265
1265
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Debian-\d+(?:[~]?bpo[.]?\d+)?)$">
|
1266
1266
|
<description>OpenSSH running on Debian (unknown release)</description>
|
@@ -1293,6 +1293,7 @@
|
|
1293
1293
|
<param pos="0" name="os.family" value="Linux"/>
|
1294
1294
|
<param pos="0" name="os.product" value="Linux"/>
|
1295
1295
|
<param pos="0" name="os.version" value="8.0"/>
|
1296
|
+
<param pos="0" name="hw.product" value="Raspberry Pi"/>
|
1296
1297
|
</fingerprint>
|
1297
1298
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Raspbian-\d\d?\+deb9u\d+)$">
|
1298
1299
|
<description>OpenSSH running on Raspbian (Debian 9 "Stretch" based)</description>
|
@@ -1308,6 +1309,7 @@
|
|
1308
1309
|
<param pos="0" name="os.family" value="Linux"/>
|
1309
1310
|
<param pos="0" name="os.product" value="Linux"/>
|
1310
1311
|
<param pos="0" name="os.version" value="9.0"/>
|
1312
|
+
<param pos="0" name="hw.product" value="Raspberry Pi"/>
|
1311
1313
|
</fingerprint>
|
1312
1314
|
<fingerprint pattern="^OpenSSH_(7\.9p1)\s+(Raspbian-(?:10|\d\d?\+deb10u\d+))$">
|
1313
1315
|
<description>OpenSSH running on Raspbian (Debian 10 "Buster" based)</description>
|
@@ -1323,6 +1325,7 @@
|
|
1323
1325
|
<param pos="0" name="os.family" value="Linux"/>
|
1324
1326
|
<param pos="0" name="os.product" value="Linux"/>
|
1325
1327
|
<param pos="0" name="os.version" value="10.0"/>
|
1328
|
+
<param pos="0" name="hw.product" value="Raspberry Pi"/>
|
1326
1329
|
</fingerprint>
|
1327
1330
|
<fingerprint pattern="^OpenSSH_(8\.1p1)\s+(Raspbian-(?:1|\d\d?\+deb11u\d+))$">
|
1328
1331
|
<description>OpenSSH running on Raspbian (Debian 11 "Bullseye" based)</description>
|
@@ -1338,6 +1341,7 @@
|
|
1338
1341
|
<param pos="0" name="os.family" value="Linux"/>
|
1339
1342
|
<param pos="0" name="os.product" value="Linux"/>
|
1340
1343
|
<param pos="0" name="os.version" value="11.0"/>
|
1344
|
+
<param pos="0" name="hw.product" value="Raspberry Pi"/>
|
1341
1345
|
</fingerprint>
|
1342
1346
|
<fingerprint pattern="^OpenSSH_([^\s]+)\s+(Raspbian-\d\d?)$">
|
1343
1347
|
<description>OpenSSH running on Raspbian (Debian, unknown release)</description>
|
@@ -1352,6 +1356,7 @@
|
|
1352
1356
|
<param pos="0" name="os.vendor" value="Raspbian"/>
|
1353
1357
|
<param pos="0" name="os.family" value="Linux"/>
|
1354
1358
|
<param pos="0" name="os.product" value="Linux"/>
|
1359
|
+
<param pos="0" name="hw.product" value="Raspberry Pi"/>
|
1355
1360
|
</fingerprint>
|
1356
1361
|
<!-- Miscellaneous -->
|
1357
1362
|
<fingerprint pattern="^OpenSSH_(.*)\+(CAN-[0-9]{4}-[0-9]{4})$">
|
@@ -1407,6 +1412,7 @@
|
|
1407
1412
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
1408
1413
|
<param pos="0" name="os.family" value="Windows"/>
|
1409
1414
|
<param pos="0" name="os.product" value="Windows"/>
|
1415
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
1410
1416
|
</fingerprint>
|
1411
1417
|
<fingerprint pattern="^OpenSSH_(.*) in DesktopAuthority (?:.*)$">
|
1412
1418
|
<description>DesktopAuthority SSH</description>
|
@@ -1480,7 +1486,7 @@
|
|
1480
1486
|
<param pos="0" name="os.cpe23" value="cpe:/o:cisco:ios:-"/>
|
1481
1487
|
</fingerprint>
|
1482
1488
|
<fingerprint pattern="^CISCO_WLC$">
|
1483
|
-
<description>SSH banner from a Cisco
|
1489
|
+
<description>SSH banner from a Cisco WLC (WLC)</description>
|
1484
1490
|
<example>CISCO_WLC</example>
|
1485
1491
|
<param pos="0" name="service.vendor" value="Cisco"/>
|
1486
1492
|
<param pos="0" name="service.product" value="SSH"/>
|
@@ -1647,6 +1653,7 @@
|
|
1647
1653
|
<param pos="0" name="service.vendor" value="Paramiko"/>
|
1648
1654
|
<param pos="0" name="service.product" value="Paramiko"/>
|
1649
1655
|
<param pos="1" name="service.version"/>
|
1656
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:paramiko:paramiko:{service.version}"/>
|
1650
1657
|
</fingerprint>
|
1651
1658
|
<fingerprint pattern="^Pragma SecureShell\s*(.*)$">
|
1652
1659
|
<description>Pragma SecureShell</description>
|
@@ -1936,7 +1943,6 @@
|
|
1936
1943
|
<param pos="0" name="service.family" value="WeOnlyDo"/>
|
1937
1944
|
<param pos="0" name="service.vendor" value="WeOnlyDo"/>
|
1938
1945
|
<param pos="0" name="service.product" value="WeOnlyDo SSH Server"/>
|
1939
|
-
<param pos="0" name="service.cpe23" value="cpe:/a:weonlydo:weonlydo:{service.version}"/>
|
1940
1946
|
</fingerprint>
|
1941
1947
|
<fingerprint pattern="^WeOnlyDo ([\d.]+) \(FIPS\)$">
|
1942
1948
|
<description>WeOnlyDo with version with FIPS mode enabled</description>
|
@@ -1946,7 +1952,6 @@
|
|
1946
1952
|
<param pos="0" name="service.family" value="WeOnlyDo"/>
|
1947
1953
|
<param pos="0" name="service.vendor" value="WeOnlyDo"/>
|
1948
1954
|
<param pos="0" name="service.product" value="WeOnlyDo SSH Server"/>
|
1949
|
-
<param pos="0" name="service.cpe23" value="cpe:/a:weonlydo:weonlydo:{service.version}"/>
|
1950
1955
|
</fingerprint>
|
1951
1956
|
<!--
|
1952
1957
|
1.2.22j4rad
|