nexposecli 0.1.9 → 0.1.10

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +24 -0
  3. data/lib/nexposecli/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 100dcc0ad771b7a3220788cd545ef2e1114c7048
4
- data.tar.gz: 75547db870384bfd72be41c4bbeaaeffd3993356
3
+ metadata.gz: 0a25b28eb27fe6450fe616722b113052efa6eeac
4
+ data.tar.gz: b403559dba0087ea4c21e165890a82d0d271df67
5
5
  SHA512:
6
- metadata.gz: 7386728f0fb33fd6e4a0c60c11531045ab41141e0fc3de5f4938130cbd734b846fb265990f8fce00d5acafdaa2d6c3a2f79d55510f1f93a6ffa64a00851b6f6a
7
- data.tar.gz: fc40967160d4f99839961c1478626e6b10d2398e3363e845f6952eca76018a0c784dfdeea84a7c136546de9e3ea726504a570ec227507e86128bf6318afed98a
6
+ metadata.gz: ea866198713cdd4068e0456c5487451f6e3a5b639d22d7b8d52c4940726b3a3231b0259eb433a2218b150a1fe7a551fcfcbd7036948fbae2bcc0d486806ba1fb
7
+ data.tar.gz: c045958c10ccc83016832e35c7b4c6311faaccf6498bed098dd12201c3308585b7e8545ae82159ba556d2a42fc108c8b615ae3b333380a6fc4f155161e051986
data/README.md CHANGED
@@ -16,6 +16,30 @@ 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
+ how to list all reports defined
20
+
21
+ nexposecli --config ./lab.yaml --list --REPORT
22
+
23
+ how to request the console's version details
24
+
25
+ nexposecli --config ./lab.yaml --run --COMMAND "ver"
26
+
27
+ how to run an adhoc scan for a single ip or network cidr-noted range ( --id <site id> )
28
+
29
+ nexposecli --config ./lab.yaml --create --SCAN --id 1 --range 192.168.42.103/32
30
+
31
+ how to add a new custom role for configuration within the console ui, based on a copy of existing role
32
+
33
+ nexposecli --config ./lab.yaml --create --ROLE -n security-manager --description "New Role Name" --newname new-short-name
34
+
35
+ how to add a new user, with default password of "nxpassword" until moved to yaml config is supported
36
+
37
+ nexposecli --config ./lab.yaml --create --USER --name <username> --fullname "Full Name"
38
+
39
+ how to export packaged scan data in a single zip file
40
+
41
+ nexposecli --config ./lab.yaml --SCAN --update --scanpath ./ --action export --id <scan id>
42
+
19
43
  where ./lab.yaml consists of the following:
20
44
 
21
45
  config:
@@ -1,3 +1,3 @@
1
1
  module Nexposecli
2
- VERSION = "0.1.9"
2
+ VERSION = "0.1.10"
3
3
  end
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.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Gomez