recog 2.3.18 → 2.3.22
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/.github/dependabot.yml +8 -0
- data/.github/workflows/ci.yml +26 -0
- data/.github/workflows/verify.yml +89 -0
- data/CONTRIBUTING.md +6 -0
- data/README.md +17 -0
- data/bin/recog_standardize +33 -12
- data/bin/recog_verify +1 -2
- data/cpe-remap.yaml +355 -200
- data/features/verify.feature +14 -14
- data/identifiers/README.md +24 -10
- data/identifiers/fields.txt +105 -0
- data/identifiers/hw_device.txt +8 -0
- data/identifiers/hw_family.txt +19 -0
- data/identifiers/hw_product.txt +122 -0
- data/identifiers/os_device.txt +2 -1
- data/identifiers/os_family.txt +3 -0
- data/identifiers/os_product.txt +46 -8
- data/identifiers/service_family.txt +10 -1
- data/identifiers/service_product.txt +90 -2
- data/identifiers/vendor.txt +104 -0
- data/lib/recog/db.rb +2 -1
- data/lib/recog/fingerprint.rb +18 -5
- data/lib/recog/nizer.rb +1 -82
- 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/requirements.txt +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 +19 -6
- data/xml/apache_modules.xml +60 -0
- data/xml/apache_os.xml +38 -38
- data/xml/dhcp_vendor_class.xml +206 -0
- data/xml/dns_versionbind.xml +11 -1
- data/xml/favicons.xml +270 -45
- data/xml/ftp_banners.xml +89 -64
- data/xml/h323_callresp.xml +99 -99
- data/xml/hp_pjl_id.xml +3 -3
- data/xml/html_title.xml +1051 -62
- data/xml/http_cookies.xml +294 -85
- data/xml/http_servers.xml +551 -122
- data/xml/http_wwwauth.xml +139 -43
- data/xml/imap_banners.xml +8 -8
- data/xml/ldap_searchresult.xml +1 -0
- data/xml/mdns_device-info_txt.xml +720 -27
- data/xml/mysql_banners.xml +3 -2
- data/xml/nntp_banners.xml +4 -4
- data/xml/ntp_banners.xml +79 -65
- data/xml/operating_system.xml +6 -6
- data/xml/pop_banners.xml +11 -11
- data/xml/rsh_resp.xml +3 -3
- data/xml/rtsp_servers.xml +7 -0
- data/xml/sip_banners.xml +374 -9
- data/xml/sip_user_agents.xml +377 -5
- data/xml/smb_native_lm.xml +32 -1
- data/xml/smb_native_os.xml +160 -33
- data/xml/smtp_banners.xml +168 -129
- data/xml/smtp_ehlo.xml +1 -1
- data/xml/smtp_expn.xml +1 -0
- data/xml/smtp_help.xml +10 -10
- data/xml/smtp_noop.xml +2 -2
- data/xml/smtp_vrfy.xml +1 -0
- data/xml/snmp_sysdescr.xml +508 -214
- data/xml/snmp_sysobjid.xml +25 -25
- data/xml/ssh_banners.xml +145 -29
- data/xml/telnet_banners.xml +240 -61
- data/xml/tls_jarm.xml +162 -0
- data/xml/x509_issuers.xml +237 -2
- data/xml/x509_subjects.xml +369 -49
- metadata +10 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rapid7 Research
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -128,6 +128,9 @@ files:
|
|
128
128
|
- ".github/ISSUE_TEMPLATE/fingerprint_request.md"
|
129
129
|
- ".github/PULL_REQUEST_TEMPLATE"
|
130
130
|
- ".github/SECURITY.md"
|
131
|
+
- ".github/dependabot.yml"
|
132
|
+
- ".github/workflows/ci.yml"
|
133
|
+
- ".github/workflows/verify.yml"
|
131
134
|
- ".gitignore"
|
132
135
|
- ".rspec"
|
133
136
|
- ".ruby-gemset"
|
@@ -160,6 +163,7 @@ files:
|
|
160
163
|
- features/support/env.rb
|
161
164
|
- features/verify.feature
|
162
165
|
- identifiers/README.md
|
166
|
+
- identifiers/fields.txt
|
163
167
|
- identifiers/hw_device.txt
|
164
168
|
- identifiers/hw_family.txt
|
165
169
|
- identifiers/hw_product.txt
|
@@ -205,10 +209,12 @@ files:
|
|
205
209
|
- spec/lib/recog/nizer_spec.rb
|
206
210
|
- spec/lib/recog/verify_reporter_spec.rb
|
207
211
|
- spec/spec_helper.rb
|
212
|
+
- tools/dev/hooks/pre-commit
|
208
213
|
- update_cpes.py
|
209
214
|
- xml/apache_modules.xml
|
210
215
|
- xml/apache_os.xml
|
211
216
|
- xml/architecture.xml
|
217
|
+
- xml/dhcp_vendor_class.xml
|
212
218
|
- xml/dns_versionbind.xml
|
213
219
|
- xml/favicons.xml
|
214
220
|
- xml/fingerprints.xsd
|
@@ -251,6 +257,7 @@ files:
|
|
251
257
|
- xml/snmp_sysobjid.xml
|
252
258
|
- xml/ssh_banners.xml
|
253
259
|
- xml/telnet_banners.xml
|
260
|
+
- xml/tls_jarm.xml
|
254
261
|
- xml/x11_banners.xml
|
255
262
|
- xml/x509_issuers.xml
|
256
263
|
- xml/x509_subjects.xml
|
@@ -272,7 +279,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
272
279
|
- !ruby/object:Gem::Version
|
273
280
|
version: '0'
|
274
281
|
requirements: []
|
275
|
-
rubygems_version: 3.0.
|
282
|
+
rubygems_version: 3.0.3
|
276
283
|
signing_key:
|
277
284
|
specification_version: 4
|
278
285
|
summary: Network service fingerprint database, classes, and utilities
|