-
Notifications
You must be signed in to change notification settings - Fork 5
/
csv_exporter.gemspec
26 lines (24 loc) · 1.14 KB
/
csv_exporter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'rubygems'
require 'rake'
Gem::Specification.new do |spec|
spec.name = 'nexpose_csv_generator'
spec.version = '0.0.2'
spec.platform=Gem::Platform::RUBY
spec.homepage='https://github.com/chrlee/NeXpose-XML-CSV-Exporter'
spec.description=
<<Description
This is a tool that connects to an NSC instance to generate a user specified delimited report with the following fields:
Vulnerable Status || Port Details || IP || Hostname || Vulnerability Description || Vulnerability Remediation || Unique ID || Operating System || Vulnerability Category || Proof || CVSS Score
Execute 'csv_creator --help' for options after installing this gem.
Description
spec.summary=
<<Summary
Connects to an NSC instance to generate a user specified delimited report with the following fields:
Vulnerable Status || Port Details || DNS || Vulnerability Information || Unique ID || Operating System || Vulnerability Category || Proof || CVSS Score
Summary
spec.add_dependency 'nexpose', '>= 0.0.3'
spec.author = 'Christopher Lee'
spec.email = 'christopher_lee@rapid7.com'
spec.executables = ['csv_creator']
spec.files = FileList['lib/*', 'lib/formatters/*'].to_a
end