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.
- checksums.yaml +4 -4
- data/README.md +24 -0
- data/lib/nexposecli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a25b28eb27fe6450fe616722b113052efa6eeac
|
|
4
|
+
data.tar.gz: b403559dba0087ea4c21e165890a82d0d271df67
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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:
|
data/lib/nexposecli/version.rb
CHANGED