recog 3.0.2 → 3.1.0
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
- checksums.yaml.gz.sig +1 -2
- data/README.md +45 -2
- data/lib/recog/fingerprint.rb +9 -2
- data/lib/recog/version.rb +1 -1
- data/recog/xml/dhcp_vendor_class.xml +753 -2
- data/recog/xml/dns_versionbind.xml +3 -3
- data/recog/xml/favicons.xml +289 -49
- data/recog/xml/ftp_banners.xml +34 -9
- data/recog/xml/html_title.xml +256 -25
- data/recog/xml/http_cookies.xml +89 -2
- data/recog/xml/http_servers.xml +335 -9
- data/recog/xml/http_wwwauth.xml +21 -1
- data/recog/xml/imap_banners.xml +19 -8
- data/recog/xml/smb_native_os.xml +1 -1
- data/recog/xml/smtp_banners.xml +7 -7
- data/recog/xml/snmp_sysdescr.xml +26 -5
- data/recog/xml/ssh_banners.xml +2 -2
- data/recog/xml/tls_jarm.xml +6 -6
- data.tar.gz.sig +0 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
@@ -539,7 +539,7 @@
|
|
539
539
|
<param pos="0" name="service.cpe23" value="cpe:/a:nlnetlabs:unbound:{service.version}"/>
|
540
540
|
</fingerprint>
|
541
541
|
|
542
|
-
<fingerprint pattern="
|
542
|
+
<fingerprint pattern="(?i)^unbound$">
|
543
543
|
<description>NLnet Labs Unbound no version string</description>
|
544
544
|
<example>unbound</example>
|
545
545
|
<param pos="0" name="service.vendor" value="NLnet Labs"/>
|
@@ -813,7 +813,7 @@
|
|
813
813
|
<param pos="1" name="service.version"/>
|
814
814
|
</fingerprint>
|
815
815
|
|
816
|
-
<fingerprint pattern="
|
816
|
+
<fingerprint pattern="(?i)^djbdns[\s-](\d.\d+)$">
|
817
817
|
<description>djbdns</description>
|
818
818
|
<example service.version="1.05">djbdns 1.05</example>
|
819
819
|
<example service.version="1.05">djbdns-1.05</example>
|
@@ -824,7 +824,7 @@
|
|
824
824
|
<param pos="1" name="service.version"/>
|
825
825
|
</fingerprint>
|
826
826
|
|
827
|
-
<fingerprint pattern="
|
827
|
+
<fingerprint pattern="(?i)^djbdns$">
|
828
828
|
<description>djbdns: no version</description>
|
829
829
|
<example>DJBDNS</example>
|
830
830
|
<example>djbdns</example>
|