recog 2.3.21 → 2.3.22
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +8 -0
- data/.github/workflows/verify.yml +89 -0
- data/CONTRIBUTING.md +6 -0
- data/README.md +17 -0
- data/bin/recog_standardize +28 -13
- data/bin/recog_verify +1 -2
- data/cpe-remap.yaml +13 -0
- data/features/verify.feature +14 -14
- data/identifiers/fields.txt +5 -4
- data/identifiers/hw_device.txt +6 -0
- data/identifiers/hw_family.txt +8 -0
- data/identifiers/hw_product.txt +51 -0
- data/identifiers/os_family.txt +1 -0
- data/identifiers/os_product.txt +10 -0
- data/identifiers/service_product.txt +12 -0
- data/identifiers/vendor.txt +49 -0
- data/lib/recog/db.rb +2 -1
- data/lib/recog/fingerprint.rb +18 -5
- data/lib/recog/verifier.rb +5 -5
- data/lib/recog/verifier_factory.rb +3 -3
- data/lib/recog/verify_reporter.rb +14 -4
- data/lib/recog/version.rb +1 -1
- data/spec/lib/fingerprint_self_test_spec.rb +1 -0
- data/spec/lib/recog/verify_reporter_spec.rb +69 -0
- data/tools/dev/hooks/pre-commit +21 -0
- data/update_cpes.py +1 -1
- data/xml/apache_os.xml +38 -38
- data/xml/dhcp_vendor_class.xml +206 -0
- data/xml/favicons.xml +148 -42
- data/xml/ftp_banners.xml +30 -16
- data/xml/h323_callresp.xml +99 -99
- data/xml/hp_pjl_id.xml +3 -3
- data/xml/html_title.xml +502 -25
- data/xml/http_cookies.xml +64 -56
- data/xml/http_servers.xml +74 -14
- data/xml/http_wwwauth.xml +107 -38
- data/xml/imap_banners.xml +3 -3
- data/xml/mdns_device-info_txt.xml +389 -26
- data/xml/mysql_banners.xml +1 -1
- data/xml/nntp_banners.xml +3 -3
- data/xml/ntp_banners.xml +64 -64
- data/xml/operating_system.xml +3 -3
- data/xml/pop_banners.xml +7 -7
- data/xml/rsh_resp.xml +3 -3
- data/xml/sip_banners.xml +27 -0
- data/xml/sip_user_agents.xml +54 -1
- data/xml/smtp_banners.xml +15 -15
- data/xml/smtp_ehlo.xml +1 -1
- data/xml/smtp_help.xml +10 -10
- data/xml/smtp_noop.xml +2 -2
- data/xml/snmp_sysdescr.xml +325 -200
- data/xml/snmp_sysobjid.xml +25 -25
- data/xml/ssh_banners.xml +7 -5
- data/xml/telnet_banners.xml +155 -20
- data/xml/tls_jarm.xml +26 -4
- data/xml/x509_issuers.xml +36 -0
- data/xml/x509_subjects.xml +136 -35
- metadata +7 -3
data/xml/hp_pjl_id.xml
CHANGED
@@ -172,7 +172,7 @@
|
|
172
172
|
<param pos="1" name="os.product"/>
|
173
173
|
</fingerprint>
|
174
174
|
|
175
|
-
<fingerprint pattern="(?i)^Oce (fx[^\s:]+)
|
175
|
+
<fingerprint pattern="(?i)^Oce (fx[^\s:]+):">
|
176
176
|
<description>Oce FX series multifunction device</description>
|
177
177
|
<example os.product="fx3000">Oce fx3000:8C5-B29:Ver.D:U0707161719:B0601271355</example>
|
178
178
|
<param pos="0" name="os.vendor" value="Oce"/>
|
@@ -181,7 +181,7 @@
|
|
181
181
|
<param pos="1" name="os.product"/>
|
182
182
|
</fingerprint>
|
183
183
|
|
184
|
-
<fingerprint pattern="(?i)^Oce (VL\S+)
|
184
|
+
<fingerprint pattern="(?i)^Oce (VL\S+):">
|
185
185
|
<description>Oce VarioLink multifunction device</description>
|
186
186
|
<example>Oce VL3200:8C5-D92:Ver.B</example>
|
187
187
|
<param pos="0" name="os.vendor" value="Oce"/>
|
@@ -309,7 +309,7 @@
|
|
309
309
|
<param pos="1" name="os.product"/>
|
310
310
|
</fingerprint>
|
311
311
|
|
312
|
-
<fingerprint pattern="(?i)^SHARP (\S+-\S+)
|
312
|
+
<fingerprint pattern="(?i)^SHARP (\S+-\S+)">
|
313
313
|
<description>Sharp Printer</description>
|
314
314
|
<example>Sharp MX-NBX3 18-Mar-08 10:22</example>
|
315
315
|
<example>Sharp AR-P17 24-Mar-04 19:55</example>
|