nexposecli 0.1.7 → 0.1.8
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 +4 -4
- data/README.md +9 -0
- data/lib/nexposecli/version.rb +1 -1
- data/nexposecli.gemspec +4 -3
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b58a93eb984dd1ba7e0c7f23dcfb4807e5e7c26b
|
|
4
|
+
data.tar.gz: 1024b1492ab7e8c3dcc436ac9db7fa83bc32a814
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b04654d4558192447245e9e436006e2e8eed491d16ad25cc303e61f88f7885e93f9d6d7494c28bfceb4009b3593b01c4ee470b7f1bf70e8457fa669ba562fdc
|
|
7
|
+
data.tar.gz: 4431ae808055fe31602800d1baf6c0fa48aeb7a666135d64df53b11aeee00ef0b1f55f5ae75a792fec7899a86137ccda43360e4d8a2b31edb59f4e472996bd5f
|
data/README.md
CHANGED
|
@@ -16,6 +16,15 @@ or an example of running a query to list all active scans
|
|
|
16
16
|
|
|
17
17
|
nexposecli --config ./lab.yaml --list --SCAN
|
|
18
18
|
|
|
19
|
+
where ./lab.yaml consists of the following:
|
|
20
|
+
|
|
21
|
+
config:
|
|
22
|
+
server: 10.10.10.10
|
|
23
|
+
user: nxuser
|
|
24
|
+
password: password
|
|
25
|
+
|
|
26
|
+
NOTE: Be sure to use your Nexpose Console's ip address and credentials
|
|
27
|
+
|
|
19
28
|
TODO: Write more detailed usage instructions here
|
|
20
29
|
|
|
21
30
|
## Contributing
|
data/lib/nexposecli/version.rb
CHANGED
data/nexposecli.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.email = ['erik_gomez@rapid7.com', 'frozen@pobox.com']
|
|
9
9
|
|
|
10
10
|
spec.summary = 'Ruby command-line utility for Rapid7 Nexpose'
|
|
11
|
-
spec.description = 'This gem provides a Ruby command-line utility to the Nexpose vulnerability management product by Rapid7.'
|
|
11
|
+
spec.description = 'This experimental gem provides a Ruby command-line utility to the Nexpose vulnerability management product by Rapid7.'
|
|
12
12
|
spec.homepage = 'https://github.com/frozenr7/nexposecli'
|
|
13
13
|
|
|
14
14
|
spec.files = `git ls-files`.split($\)
|
|
@@ -16,8 +16,9 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.executables = ["nexposecli"]
|
|
17
17
|
spec.require_paths = ["lib"]
|
|
18
18
|
|
|
19
|
-
spec.
|
|
20
|
-
spec.add_runtime_dependency "
|
|
19
|
+
spec.required_ruby_version = '>= 2.1'
|
|
20
|
+
spec.add_runtime_dependency "nexpose", ">= 4.0.4"
|
|
21
|
+
spec.add_runtime_dependency "netaddr", ">= 1.5.1"
|
|
21
22
|
|
|
22
23
|
spec.add_development_dependency "bundler", "~> 1.12"
|
|
23
24
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nexposecli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Erik Gomez
|
|
@@ -15,28 +15,28 @@ dependencies:
|
|
|
15
15
|
name: nexpose
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
requirements:
|
|
18
|
-
- - "
|
|
18
|
+
- - ">="
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
20
|
version: 4.0.4
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
|
-
- - "
|
|
25
|
+
- - ">="
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
27
|
version: 4.0.4
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: netaddr
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
|
-
- - "
|
|
32
|
+
- - ">="
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
34
|
version: 1.5.1
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
|
-
- - "
|
|
39
|
+
- - ">="
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
41
|
version: 1.5.1
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
@@ -81,8 +81,8 @@ dependencies:
|
|
|
81
81
|
- - "~>"
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
83
|
version: '3.0'
|
|
84
|
-
description: This gem provides a Ruby command-line utility to the Nexpose
|
|
85
|
-
management product by Rapid7.
|
|
84
|
+
description: This experimental gem provides a Ruby command-line utility to the Nexpose
|
|
85
|
+
vulnerability management product by Rapid7.
|
|
86
86
|
email:
|
|
87
87
|
- erik_gomez@rapid7.com
|
|
88
88
|
- frozen@pobox.com
|
|
@@ -118,7 +118,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
requirements:
|
|
119
119
|
- - ">="
|
|
120
120
|
- !ruby/object:Gem::Version
|
|
121
|
-
version: '
|
|
121
|
+
version: '2.1'
|
|
122
122
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
123
|
requirements:
|
|
124
124
|
- - ">="
|