diff --git a/Usage.md b/Usage.md index 9775ae7..1f07196 100644 --- a/Usage.md +++ b/Usage.md @@ -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). \ No newline at end of file +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/ + ├── udp/ + └── 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 +└── + └── scans/ + ├── _commands.log + ├── _manual_commands.txt + ├── tcp/ + ├── udp/ + └── xml/ +``` +