Updated README.
This commit is contained in:
parent
08c193ec7b
commit
787d99b31b
16
README.md
16
README.md
|
|
@ -77,7 +77,9 @@ AutoRecon uses Python 3 specific functionality and does not support Python 2.
|
||||||
|
|
||||||
```
|
```
|
||||||
usage: autorecon.py [-h] [-ct <number>] [-cs <number>] [--profile PROFILE]
|
usage: autorecon.py [-h] [-ct <number>] [-cs <number>] [--profile PROFILE]
|
||||||
[-o OUTPUT] [--nmap NMAP | --nmap-append NMAP_APPEND] [-v]
|
[-o OUTPUT] [--single-target] [--only-scans-dir]
|
||||||
|
[--heartbeat HEARTBEAT]
|
||||||
|
[--nmap NMAP | --nmap-append NMAP_APPEND] [-v]
|
||||||
[--disable-sanity-checks]
|
[--disable-sanity-checks]
|
||||||
targets [targets ...]
|
targets [targets ...]
|
||||||
|
|
||||||
|
|
@ -101,6 +103,16 @@ optional arguments:
|
||||||
scan-profiles.toml). Default: default
|
scan-profiles.toml). Default: default
|
||||||
-o OUTPUT, --output OUTPUT
|
-o OUTPUT, --output OUTPUT
|
||||||
The output directory for results. Default: results
|
The output directory for results. Default: results
|
||||||
|
--single-target Only scan a single target. A directory named after the
|
||||||
|
target will not be created. Instead, the directory
|
||||||
|
structure will be created within the output directory.
|
||||||
|
Default: false
|
||||||
|
--only-scans-dir Only create the "scans" directory for results. Other
|
||||||
|
directories (e.g. exploit, loot, report) will not be
|
||||||
|
created. Default: false
|
||||||
|
--heartbeat HEARTBEAT
|
||||||
|
Specifies the heartbeat interval (in seconds) for task
|
||||||
|
status messages. Default: 60
|
||||||
--nmap NMAP Override the {nmap_extra} variable in scans. Default:
|
--nmap NMAP Override the {nmap_extra} variable in scans. Default:
|
||||||
-vv --reason -Pn
|
-vv --reason -Pn
|
||||||
--nmap-append NMAP_APPEND
|
--nmap-append NMAP_APPEND
|
||||||
|
|
@ -108,7 +120,7 @@ optional arguments:
|
||||||
-v, --verbose Enable verbose output. Repeat for more verbosity.
|
-v, --verbose Enable verbose output. Repeat for more verbosity.
|
||||||
--disable-sanity-checks
|
--disable-sanity-checks
|
||||||
Disable sanity checks that would otherwise prevent the
|
Disable sanity checks that would otherwise prevent the
|
||||||
scans from running.
|
scans from running. Default: false
|
||||||
```
|
```
|
||||||
|
|
||||||
### Examples
|
### Examples
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue