Updated Usage (markdown)

Tib3rius 2022-05-29 22:18:21 -04:00
parent 0e305796e1
commit 90ed2fe533
1 changed files with 38 additions and 1 deletions

@ -331,4 +331,41 @@ results
└── xml/
```
The `-o` and `--output` options can be used to specify another location for the results directory (relative or absolute path).
The `-o` and `--output` options can be used to specify another location for the results directory (relative or absolute path).
### Single Target
If the `--single-target` option is provided, a directory named after the target will not be created in the results directory. Instead, the target directory structure will be created in the results directory itself, as follows:
```
results
├── exploit/
├── loot/
├── report/
│ ├── local.txt
│ ├── notes.txt
│ ├── proof.txt
│ └── screenshots/
└── scans/
├── _commands.log
├── _manual_commands.txt
├── tcp<port>/
├── udp<port>/
└── xml/
```
### Only Scans Directory
If the `--only-scans-dir` option is provided, only the "scans" directory will be created in the target's directory, as follows:
```
results
└── <target>
└── scans/
├── _commands.log
├── _manual_commands.txt
├── tcp<port>/
├── udp<port>/
└── xml/
```