dradis-nessus 3.17.0 → 3.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 525b6414b2fe9dfa5b90211ce9851eae66719e6a459e289e0eb9f08d80ba42fd
4
- data.tar.gz: 68206b4fff7b3df9d2967fa3d1054be5a012e320d68089d2b5308e74e9aad00b
3
+ metadata.gz: ca05cc1e6b8552ce82dcc4165a30d7b2132a354a77d3cafe99a2badfdfa925a8
4
+ data.tar.gz: 8974a0991b48dc28a66c1b933a46fe433fdcc4083f9ea8b98afa5cf4bbe16043
5
5
  SHA512:
6
- metadata.gz: 118844a0a6c32a1a197925e0748f7addb774e348ba5349101cf261f585ac9a0086a39cedcff870e62fa833efd4312d6f51b1109ea61187fac59731fcf2bfabd0
7
- data.tar.gz: 577bc2449a1100fbb766fe3f6851471c8c6d8d920f21506a39332cf10163ca7136017df883424c7ca10fc987774db6083bcd11115a92bab1263352bf502d6650
6
+ metadata.gz: 4d53a36906127b9be8631daeea80a17c2701a576ba843fd2913401ca0e03ccc013742ab5c7803c772e3e153d221f3bcaa5114bd78c49289aa83ac0e1ac527036
7
+ data.tar.gz: 2b03091a16ed3f7bcc9759b838c551d4e7c4f89c09d60e298d587471f64b200ff183cd9b63f91ef98545034726821b5ef00cc89412014c7fe51958a7868b54cd
data/.gitignore CHANGED
@@ -7,3 +7,5 @@ Gemfile.lock
7
7
  # Gem artifacts
8
8
  /pkg/
9
9
  /spec/internal/
10
+
11
+ .DS_Store
data/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## Dradis Framework 3.22 (April, 2021) ##
2
+
3
+ * Add report_item.cvss3_temporal_score & report_item.cvss3_temporal_vector as available fields.
4
+
5
+ ## Dradis Framework 3.21 (February, 2021) ##
6
+
7
+ * No changes.
8
+
9
+ ## Dradis Framework 3.20 (December, 2020) ##
10
+
11
+ * No changes.
12
+
13
+ ## Dradis Framework 3.19 (September, 2020) ##
14
+
15
+ * No changes.
16
+
17
+ ## Dradis Framework 3.18 (July, 2020) ##
18
+
19
+ * No changes.
20
+
1
21
  ## Dradis Framework 3.17 (May, 2020) ##
2
22
 
3
23
  * No changes.
@@ -8,7 +8,7 @@ module Dradis
8
8
 
9
9
  module VERSION
10
10
  MAJOR = 3
11
- MINOR = 17
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.17.0
4
+ version: 3.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Martin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-02 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
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
158
  - !ruby/object:Gem::Version
159
159
  version: '0'
160
160
  requirements: []
161
- rubygems_version: 3.0.1
161
+ rubygems_version: 3.1.2
162
162
  signing_key:
163
163
  specification_version: 4
164
164
  summary: Nessus upload add-on for the Dradis Framework.