dradis-nessus 4.8.0 → 4.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/dradis-nessus.gemspec +3 -5
- data/lib/dradis/plugins/nessus/gem_version.rb +1 -1
- data/lib/nessus/report_item.rb +3 -3
- data/templates/report_item.fields +1 -0
- data/templates/report_item.sample +1 -0
- metadata +4 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '080f08fe4a7a612c7264ce46339a6c996cd311b33d2cc8a09a360d1c686fdf5f'
|
4
|
+
data.tar.gz: 39512d271707760c6c7f166b45998d4d516fae2b67f8d051f229dc68476c5cdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce4a4e9f5f1cba8bda205f90b0721d3e9d7062ad858e6662537d640a411fff32ca3c7c4cae78946ebe15260d81fac1b233172ff01ec47a71b65159336e4abbff
|
7
|
+
data.tar.gz: 6e6158969274d12fdcc206300939ad2667b8c25c2ec2ebcaada26744d54cc6675b60d5361358f5e54b1db1f1c5179de8d8323829bff58eb485e6a3560ac97e20
|
data/CHANGELOG.md
CHANGED
data/dradis-nessus.gemspec
CHANGED
@@ -2,10 +2,9 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
2
2
|
require 'dradis/plugins/nessus/version'
|
3
3
|
version = Dradis::Plugins::Nessus::VERSION::STRING
|
4
4
|
|
5
|
-
|
6
5
|
# Describe your gem and declare its dependencies:
|
7
6
|
Gem::Specification.new do |spec|
|
8
|
-
spec.platform
|
7
|
+
spec.platform = Gem::Platform::RUBY
|
9
8
|
spec.name = 'dradis-nessus'
|
10
9
|
spec.version = version
|
11
10
|
spec.summary = 'Nessus upload add-on for the Dradis Framework.'
|
@@ -14,11 +13,10 @@ Gem::Specification.new do |spec|
|
|
14
13
|
spec.license = 'GPL-2'
|
15
14
|
|
16
15
|
spec.authors = ['Daniel Martin']
|
17
|
-
spec.
|
18
|
-
spec.homepage = 'http://dradisframework.org'
|
16
|
+
spec.homepage = 'https://dradis.com/integrations/nessus.html'
|
19
17
|
|
20
18
|
spec.files = `git ls-files`.split($\)
|
21
|
-
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
19
|
+
spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
22
20
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
23
21
|
|
24
22
|
# By not including Rails as a dependency, we can use the gem with different
|
data/lib/nessus/report_item.rb
CHANGED
@@ -27,8 +27,8 @@ module Nessus
|
|
27
27
|
:exploit_code_maturity, :exploit_framework_canvas, :exploit_framework_core,
|
28
28
|
:exploitability_ease, :exploit_framework_metasploit,:metasploit_name,
|
29
29
|
:patch_publication_date, :plugin_modification_date, :plugin_output,
|
30
|
-
:plugin_publication_date, :
|
31
|
-
:solution, :synopsis, :threat_intensity_last_28, :threat_recency,
|
30
|
+
:plugin_publication_date, :plugin_type, :plugin_version, :product_coverage,
|
31
|
+
:risk_factor, :solution, :synopsis, :threat_intensity_last_28, :threat_recency,
|
32
32
|
:threat_sources_last_28, :vpr_score, :vuln_publication_date,
|
33
33
|
# multiple tags
|
34
34
|
:bid_entries, :cve_entries, :see_also_entries, :xref_entries,
|
@@ -123,7 +123,7 @@ module Nessus
|
|
123
123
|
|
124
124
|
def cleanup_html(source)
|
125
125
|
result = source.dup
|
126
|
-
result.gsub!(/<code>(.*?)<\/code>/) { "
|
126
|
+
result.gsub!(/<code>(.*?)<\/code>/) { "@#{$1}@" }
|
127
127
|
result
|
128
128
|
end
|
129
129
|
|
@@ -23,6 +23,7 @@ If safe checks are enabled, this may be a false positive since it is based on th
|
|
23
23
|
1.2.2 and above, 1.3 through 1.3.24, and 2.0 through 2.0.36 are affected, the remote server may be running a patched version of Apache.</description>
|
24
24
|
|
25
25
|
<plugin_publication_date>2002/06/17</plugin_publication_date>
|
26
|
+
<plugin_type>remote</plugin_type>
|
26
27
|
<metasploit_name>Apache Win32 Chunked Encoding</metasploit_name>
|
27
28
|
<cvss3_base_score>3.7</cvss3_base_score>
|
28
29
|
<cvss3_temporal_score>6.8</cvss3_temporal_score>
|
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: 4.
|
4
|
+
version: 4.10.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: 2023-
|
11
|
+
date: 2023-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dradis-plugins
|
@@ -96,8 +96,7 @@ dependencies:
|
|
96
96
|
version: 0.5.2
|
97
97
|
description: This add-on allows you to upload and parse output produced from Tenable's
|
98
98
|
Nessus Scanner into Dradis.
|
99
|
-
email:
|
100
|
-
- etd@nomejortu.com
|
99
|
+
email:
|
101
100
|
executables: []
|
102
101
|
extensions: []
|
103
102
|
extra_rdoc_files: []
|
@@ -140,7 +139,7 @@ files:
|
|
140
139
|
- templates/report_item.fields
|
141
140
|
- templates/report_item.sample
|
142
141
|
- templates/report_item.template
|
143
|
-
homepage:
|
142
|
+
homepage: https://dradis.com/integrations/nessus.html
|
144
143
|
licenses:
|
145
144
|
- GPL-2
|
146
145
|
metadata: {}
|