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.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/.github/SECURITY.md +35 -0
  3. data/.gitignore +9 -0
  4. data/CONTRIBUTING.md +136 -37
  5. data/README.md +18 -16
  6. data/bin/recog_cleanup +16 -0
  7. data/bin/recog_standardize +30 -6
  8. data/cpe-remap.yaml +38 -1
  9. data/identifiers/README.md +9 -0
  10. data/identifiers/hw_device.txt +77 -0
  11. data/identifiers/hw_family.txt +96 -0
  12. data/identifiers/hw_product.txt +328 -0
  13. data/identifiers/os_architecture.txt +6 -6
  14. data/identifiers/os_device.txt +45 -3
  15. data/identifiers/os_family.txt +206 -41
  16. data/identifiers/os_product.txt +238 -17
  17. data/identifiers/service_family.txt +144 -57
  18. data/identifiers/service_product.txt +385 -83
  19. data/identifiers/vendor.txt +554 -68
  20. data/lib/recog/version.rb +1 -1
  21. data/requirements.txt +1 -1
  22. data/update_cpes.py +4 -1
  23. data/xml/apache_modules.xml +292 -5
  24. data/xml/apache_os.xml +41 -2
  25. data/xml/architecture.xml +11 -3
  26. data/xml/dns_versionbind.xml +200 -26
  27. data/xml/favicons.xml +1701 -0
  28. data/xml/ftp_banners.xml +256 -23
  29. data/xml/h323_callresp.xml +112 -12
  30. data/xml/hp_pjl_id.xml +47 -5
  31. data/xml/html_title.xml +1156 -70
  32. data/xml/http_cookies.xml +69 -11
  33. data/xml/http_servers.xml +1094 -107
  34. data/xml/http_wwwauth.xml +143 -27
  35. data/xml/imap_banners.xml +62 -13
  36. data/xml/ldap_searchresult.xml +81 -9
  37. data/xml/mdns_device-info_txt.xml +194 -17
  38. data/xml/mdns_workstation_txt.xml +4 -2
  39. data/xml/mysql_banners.xml +233 -40
  40. data/xml/mysql_error.xml +113 -6
  41. data/xml/nntp_banners.xml +10 -2
  42. data/xml/ntp_banners.xml +93 -9
  43. data/xml/operating_system.xml +90 -3
  44. data/xml/pop_banners.xml +87 -33
  45. data/xml/rsh_resp.xml +11 -2
  46. data/xml/rtsp_servers.xml +43 -23
  47. data/xml/sip_banners.xml +6 -11
  48. data/xml/sip_user_agents.xml +29 -2
  49. data/xml/smb_native_lm.xml +10 -2
  50. data/xml/smb_native_os.xml +80 -2
  51. data/xml/smtp_banners.xml +233 -13
  52. data/xml/smtp_debug.xml +6 -4
  53. data/xml/smtp_ehlo.xml +7 -5
  54. data/xml/smtp_expn.xml +13 -4
  55. data/xml/smtp_help.xml +23 -4
  56. data/xml/smtp_mailfrom.xml +5 -2
  57. data/xml/smtp_noop.xml +6 -5
  58. data/xml/smtp_quit.xml +5 -4
  59. data/xml/smtp_rcptto.xml +5 -2
  60. data/xml/smtp_rset.xml +4 -4
  61. data/xml/smtp_turn.xml +4 -4
  62. data/xml/smtp_vrfy.xml +14 -4
  63. data/xml/snmp_sysdescr.xml +741 -32
  64. data/xml/snmp_sysobjid.xml +47 -2
  65. data/xml/ssh_banners.xml +255 -81
  66. data/xml/telnet_banners.xml +503 -30
  67. data/xml/x11_banners.xml +26 -3
  68. data/xml/x509_issuers.xml +37 -13
  69. data/xml/x509_subjects.xml +214 -52
  70. 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.7
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-06-05 00:00:00.000000000 Z
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: