nexposecli 0.1.8 → 0.1.9
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 +10 -6
- data/lib/nexposecli/version.rb +1 -1
- data/nexposecli.gemspec +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 100dcc0ad771b7a3220788cd545ef2e1114c7048
|
|
4
|
+
data.tar.gz: 75547db870384bfd72be41c4bbeaaeffd3993356
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7386728f0fb33fd6e4a0c60c11531045ab41141e0fc3de5f4938130cbd734b846fb265990f8fce00d5acafdaa2d6c3a2f79d55510f1f93a6ffa64a00851b6f6a
|
|
7
|
+
data.tar.gz: fc40967160d4f99839961c1478626e6b10d2398e3363e845f6952eca76018a0c784dfdeea84a7c136546de9e3ea726504a570ec227507e86128bf6318afed98a
|
data/README.md
CHANGED
|
@@ -10,23 +10,27 @@ Install it yourself as:
|
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
|
-
nexposecli --help
|
|
13
|
+
nexposecli --help
|
|
14
14
|
|
|
15
15
|
or an example of running a query to list all active scans
|
|
16
16
|
|
|
17
|
-
nexposecli --config ./lab.yaml --list --SCAN
|
|
17
|
+
nexposecli --config ./lab.yaml --list --SCAN
|
|
18
18
|
|
|
19
19
|
where ./lab.yaml consists of the following:
|
|
20
20
|
|
|
21
|
-
config:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
config:
|
|
22
|
+
server: 10.10.10.10
|
|
23
|
+
user: nxuser
|
|
24
|
+
password: password
|
|
25
25
|
|
|
26
26
|
NOTE: Be sure to use your Nexpose Console's ip address and credentials
|
|
27
27
|
|
|
28
28
|
TODO: Write more detailed usage instructions here
|
|
29
29
|
|
|
30
|
+
Known Issues:
|
|
31
|
+
* Currently expects a ./logs directory in working directory
|
|
32
|
+
* A number of the target objects may not return anything to STDOUT without a -v
|
|
33
|
+
|
|
30
34
|
## Contributing
|
|
31
35
|
|
|
32
36
|
Bug reports and pull requests are welcome on GitHub at https://github.com/frozenr7/nexposecli.
|
data/lib/nexposecli/version.rb
CHANGED
data/nexposecli.gemspec
CHANGED
|
@@ -10,6 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.summary = 'Ruby command-line utility for Rapid7 Nexpose'
|
|
11
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
|
+
spec.license = 'BSD'
|
|
13
14
|
|
|
14
15
|
spec.files = `git ls-files`.split($\)
|
|
15
16
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
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.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Erik Gomez
|
|
@@ -108,7 +108,8 @@ files:
|
|
|
108
108
|
- spec/nexposecli_spec.rb
|
|
109
109
|
- spec/spec_helper.rb
|
|
110
110
|
homepage: https://github.com/frozenr7/nexposecli
|
|
111
|
-
licenses:
|
|
111
|
+
licenses:
|
|
112
|
+
- BSD
|
|
112
113
|
metadata: {}
|
|
113
114
|
post_install_message:
|
|
114
115
|
rdoc_options: []
|