Updated Usage (markdown)

Tib3rius 2022-05-29 22:07:11 -04:00
parent 5aeb55ef82
commit 0e305796e1
1 changed files with 27 additions and 3 deletions

@ -241,7 +241,7 @@ autorecon --max-port-scans 5 <target>
## Config File
AutoRecon looks in multiple places for its config file (config.toml). It will first check the current working directory for the file, and if not found, will use the one automatically created at ~/.config/AutoRecon/config.toml. The command line option `-c` and `--config` will override this behavior, and force AutoRecon to use the one specified:
AutoRecon looks in multiple places for its config file (config.toml). It will first check the current working directory for the file, and if not found, will use the one automatically created at ~/.config/AutoRecon/config.toml. The option `-c` and `--config` will override this behavior, and force AutoRecon to use the one specified:
```
autorecon -c /path/to/config.toml <target>
@ -301,10 +301,34 @@ autorecon --plugins-dir=/path/to/plugins --add-plugins-dir=/path/to/additional/p
## Listing Plugins
The `--list / -l` option will list information about all the plugins in AutoRecon. An optional type can be provided to only display a specific type of plugin. Supported types are: port, service, report. For example, to list the service scan plugins, use:
The `-l` and `--list` options will list information about all the plugins in AutoRecon. An optional type can be provided to only display a specific type of plugin. Supported types are: port, service, report. For example, to list the service scan plugins, use:
```
autorecon -l service
```
The plugin type, name, slug, and description (if it exists) will be displayed for each plugin.
The plugin type, name, slug, and description (if it exists) will be displayed for each plugin.
## Output
By default, AutoRecon will create a results directory named "results" in the current working directory. All output from AutoRecon is written here, using the following directory structure:
```
results
└── <target>
├── exploit/
├── loot/
├── report/
│ ├── local.txt
│ ├── notes.txt
│ ├── proof.txt
│ └── screenshots/
└── scans/
├── _commands.log
├── _manual_commands.txt
├── tcp<port>/
├── udp<port>/
└── xml/
```
The `-o` and `--output` options can be used to specify another location for the results directory (relative or absolute path).