recog-intrigue 2.3.7 → 2.3.14
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/SECURITY.md +35 -0
- data/.gitignore +9 -0
- data/CONTRIBUTING.md +136 -37
- data/README.md +18 -16
- data/bin/recog_cleanup +16 -0
- data/bin/recog_standardize +30 -6
- data/cpe-remap.yaml +38 -1
- data/identifiers/README.md +9 -0
- data/identifiers/hw_device.txt +77 -0
- data/identifiers/hw_family.txt +96 -0
- data/identifiers/hw_product.txt +328 -0
- data/identifiers/os_architecture.txt +6 -6
- data/identifiers/os_device.txt +45 -3
- data/identifiers/os_family.txt +206 -41
- data/identifiers/os_product.txt +238 -17
- data/identifiers/service_family.txt +144 -57
- data/identifiers/service_product.txt +385 -83
- data/identifiers/vendor.txt +554 -68
- data/lib/recog/version.rb +1 -1
- data/requirements.txt +1 -1
- data/update_cpes.py +4 -1
- data/xml/apache_modules.xml +292 -5
- data/xml/apache_os.xml +41 -2
- data/xml/architecture.xml +11 -3
- data/xml/dns_versionbind.xml +200 -26
- data/xml/favicons.xml +1701 -0
- data/xml/ftp_banners.xml +256 -23
- data/xml/h323_callresp.xml +112 -12
- data/xml/hp_pjl_id.xml +47 -5
- data/xml/html_title.xml +1156 -70
- data/xml/http_cookies.xml +69 -11
- data/xml/http_servers.xml +1094 -107
- data/xml/http_wwwauth.xml +143 -27
- data/xml/imap_banners.xml +62 -13
- data/xml/ldap_searchresult.xml +81 -9
- data/xml/mdns_device-info_txt.xml +194 -17
- data/xml/mdns_workstation_txt.xml +4 -2
- data/xml/mysql_banners.xml +233 -40
- data/xml/mysql_error.xml +113 -6
- data/xml/nntp_banners.xml +10 -2
- data/xml/ntp_banners.xml +93 -9
- data/xml/operating_system.xml +90 -3
- data/xml/pop_banners.xml +87 -33
- data/xml/rsh_resp.xml +11 -2
- data/xml/rtsp_servers.xml +43 -23
- data/xml/sip_banners.xml +6 -11
- data/xml/sip_user_agents.xml +29 -2
- data/xml/smb_native_lm.xml +10 -2
- data/xml/smb_native_os.xml +80 -2
- data/xml/smtp_banners.xml +233 -13
- data/xml/smtp_debug.xml +6 -4
- data/xml/smtp_ehlo.xml +7 -5
- data/xml/smtp_expn.xml +13 -4
- data/xml/smtp_help.xml +23 -4
- data/xml/smtp_mailfrom.xml +5 -2
- data/xml/smtp_noop.xml +6 -5
- data/xml/smtp_quit.xml +5 -4
- data/xml/smtp_rcptto.xml +5 -2
- data/xml/smtp_rset.xml +4 -4
- data/xml/smtp_turn.xml +4 -4
- data/xml/smtp_vrfy.xml +14 -4
- data/xml/snmp_sysdescr.xml +741 -32
- data/xml/snmp_sysobjid.xml +47 -2
- data/xml/ssh_banners.xml +255 -81
- data/xml/telnet_banners.xml +503 -30
- data/xml/x11_banners.xml +26 -3
- data/xml/x509_issuers.xml +37 -13
- data/xml/x509_subjects.xml +214 -52
- metadata +12 -5
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recog-intrigue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rapid7 Research
|
8
8
|
- jcran
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-
|
12
|
+
date: 2020-09-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -116,6 +116,7 @@ description: Recog is a framework for identifying products, services, operating
|
|
116
116
|
email:
|
117
117
|
- jcran@intrigue.io
|
118
118
|
executables:
|
119
|
+
- recog_cleanup
|
119
120
|
- recog_export
|
120
121
|
- recog_match
|
121
122
|
- recog_standardize
|
@@ -127,6 +128,7 @@ files:
|
|
127
128
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
128
129
|
- ".github/ISSUE_TEMPLATE/fingerprint_request.md"
|
129
130
|
- ".github/PULL_REQUEST_TEMPLATE"
|
131
|
+
- ".github/SECURITY.md"
|
130
132
|
- ".gitignore"
|
131
133
|
- ".rbenv-gemset"
|
132
134
|
- ".rspec"
|
@@ -140,6 +142,7 @@ files:
|
|
140
142
|
- LICENSE
|
141
143
|
- README.md
|
142
144
|
- Rakefile
|
145
|
+
- bin/recog_cleanup
|
143
146
|
- bin/recog_export
|
144
147
|
- bin/recog_match
|
145
148
|
- bin/recog_standardize
|
@@ -158,6 +161,9 @@ files:
|
|
158
161
|
- features/support/env.rb
|
159
162
|
- features/verify.feature
|
160
163
|
- identifiers/README.md
|
164
|
+
- identifiers/hw_device.txt
|
165
|
+
- identifiers/hw_family.txt
|
166
|
+
- identifiers/hw_product.txt
|
161
167
|
- identifiers/os_architecture.txt
|
162
168
|
- identifiers/os_device.txt
|
163
169
|
- identifiers/os_family.txt
|
@@ -208,6 +214,7 @@ files:
|
|
208
214
|
- xml/apache_os.xml
|
209
215
|
- xml/architecture.xml
|
210
216
|
- xml/dns_versionbind.xml
|
217
|
+
- xml/favicons.xml
|
211
218
|
- xml/fingerprints.xsd
|
212
219
|
- xml/ftp_banners.xml
|
213
220
|
- xml/h323_callresp.xml
|
@@ -254,7 +261,7 @@ files:
|
|
254
261
|
homepage: https://www.github.com/rapid7/recog
|
255
262
|
licenses: []
|
256
263
|
metadata: {}
|
257
|
-
post_install_message:
|
264
|
+
post_install_message:
|
258
265
|
rdoc_options: []
|
259
266
|
require_paths:
|
260
267
|
- lib
|
@@ -270,7 +277,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
270
277
|
version: '0'
|
271
278
|
requirements: []
|
272
279
|
rubygems_version: 3.0.3
|
273
|
-
signing_key:
|
280
|
+
signing_key:
|
274
281
|
specification_version: 4
|
275
282
|
summary: Network service fingerprint database, classes, and utilities
|
276
283
|
test_files:
|