From 90ed2fe533ff244a2c78b83fb10666c1464e6db4 Mon Sep 17 00:00:00 2001 From: Tib3rius <48113936+Tib3rius@users.noreply.github.com> Date: Sun, 29 May 2022 22:18:21 -0400 Subject: [PATCH] Updated Usage (markdown) --- Usage.md | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) 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/ +``` +