dradis-nessus 3.21.0 → 3.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35a847aee9242430eb7d2b88de6e33d642836604cc2e71465d1ac739c6f5782a
4
- data.tar.gz: d4a58032c0e0ad9a1112e1611cd57b1804dad49c9a85c702d0ec8d4b2f1502e6
3
+ metadata.gz: ca05cc1e6b8552ce82dcc4165a30d7b2132a354a77d3cafe99a2badfdfa925a8
4
+ data.tar.gz: 8974a0991b48dc28a66c1b933a46fe433fdcc4083f9ea8b98afa5cf4bbe16043
5
5
  SHA512:
6
- metadata.gz: ea107ba13c04f4fe79f259dc05b1d1a206ba737684854010b49e909b84d232701bf8e79cfd6d4ac071ecbf9a24345e98424357f8b9004ecc0a1983cd5209dcee
7
- data.tar.gz: 94e26f9da628ea5be6fc124e8b9310513b4e4284fd3cef14a32361326b7dae805fbbc5650db7529fd34df2bde80964462324d150d25bc0a691f61ed6fcb8753d
6
+ metadata.gz: 4d53a36906127b9be8631daeea80a17c2701a576ba843fd2913401ca0e03ccc013742ab5c7803c772e3e153d221f3bcaa5114bd78c49289aa83ac0e1ac527036
7
+ data.tar.gz: 2b03091a16ed3f7bcc9759b838c551d4e7c4f89c09d60e298d587471f64b200ff183cd9b63f91ef98545034726821b5ef00cc89412014c7fe51958a7868b54cd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## Dradis Framework 3.22 (April, 2021) ##
2
+
3
+ * Add report_item.cvss3_temporal_score & report_item.cvss3_temporal_vector as available fields.
4
+
1
5
  ## Dradis Framework 3.21 (February, 2021) ##
2
6
 
3
7
  * No changes.
@@ -8,7 +8,7 @@ module Dradis
8
8
 
9
9
  module VERSION
10
10
  MAJOR = 3
11
- MINOR = 21
11
+ MINOR = 22
12
12
  TINY = 0
13
13
  PRE = nil
14
14
 
@@ -19,15 +19,15 @@ module Nessus
19
19
  def supported_tags
20
20
  [
21
21
  # attributes
22
- :port, :svc_name, :protocol, :severity, :plugin_id, :plugin_name, :plugin_family,
22
+ :plugin_family, :plugin_id, :plugin_name, :port, :protocol, :svc_name, :severity,
23
23
  # simple tags
24
- :solution, :risk_factor, :description, :plugin_publication_date,
25
- :metasploit_name, :cvss_vector, :cvss3_vector, :cvss_temporal_vector, :synopsis,
26
- :exploit_available, :patch_publication_date, :plugin_modification_date,
27
- :cvss_temporal_score, :cvss_base_score, :cvss3_base_score, :plugin_output,
28
- :plugin_version, :exploitability_ease, :vuln_publication_date,
29
- :exploit_framework_canvas, :exploit_framework_metasploit,
30
- :exploit_framework_core,
24
+ :cvss3_base_score, :cvss3_temporal_score, :cvss3_temporal_vector, :cvss3_vector,
25
+ :cvss_base_score, :cvss_temporal_score, :cvss_temporal_vector, :cvss_vector,
26
+ :description, :exploit_available, :exploit_framework_canvas, :exploit_framework_core,
27
+ :exploitability_ease, :exploit_framework_metasploit,
28
+ :metasploit_name, :patch_publication_date, :plugin_modification_date, :plugin_output,
29
+ :plugin_publication_date, :plugin_version, :risk_factor,
30
+ :solution, :synopsis, :vuln_publication_date,
31
31
  # multiple tags
32
32
  :bid_entries, :cve_entries, :see_also_entries, :xref_entries,
33
33
  # compliance tags
@@ -18,7 +18,9 @@ report_item.metasploit_name
18
18
  report_item.cvss_vector
19
19
  report_item.cvss3_vector
20
20
  report_item.cvss_temporal_vector
21
+ report_item.cvss3_temporal_vector
21
22
  report_item.cvss_temporal_score
23
+ report_item.cvss3_temporal_score
22
24
  report_item.cvss_base_score
23
25
  report_item.cvss3_base_score
24
26
  report_item.synopsis
@@ -24,6 +24,8 @@ If safe checks are enabled, this may be a false positive since it is based on th
24
24
  <plugin_publication_date>2002/06/17</plugin_publication_date>
25
25
  <metasploit_name>Apache Win32 Chunked Encoding</metasploit_name>
26
26
  <cvss3_base_score>3.7</cvss3_base_score>
27
+ <cvss3_temporal_score>6.8</cvss3_temporal_score>
28
+ <cvss3_temporal_vector>CVSS:3.0/E:U/RL:O/RC:C</cvss3_temporal_vector>
27
29
  <cvss3_vector>CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N</cvss3_vector>
28
30
  <cvss_vector>CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P</cvss_vector>
29
31
  <synopsis>The remote web server is vulnerable to a remote code execution attack.</synopsis>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dradis-nessus
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.21.0
4
+ version: 3.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Martin
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-12 00:00:00.000000000 Z
11
+ date: 2021-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dradis-plugins
@@ -143,7 +143,7 @@ homepage: http://dradisframework.org
143
143
  licenses:
144
144
  - GPL-2
145
145
  metadata: {}
146
- post_install_message:
146
+ post_install_message:
147
147
  rdoc_options: []
148
148
  require_paths:
149
149
  - lib
@@ -158,8 +158,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
158
  - !ruby/object:Gem::Version
159
159
  version: '0'
160
160
  requirements: []
161
- rubygems_version: 3.2.4
162
- signing_key:
161
+ rubygems_version: 3.1.2
162
+ signing_key:
163
163
  specification_version: 4
164
164
  summary: Nessus upload add-on for the Dradis Framework.
165
165
  test_files: