Updated Usage (markdown)
parent
54b41ec1c1
commit
7b23168030
17
Usage.md
17
Usage.md
|
|
@ -208,7 +208,7 @@ autorecon -p T:20-23,U:53,123 <target>
|
|||
To scan the same TCP and UDP port, but also scan specific TCP and/or UDP ports, put the shared ports at the start, or preface them with a `B:` for Both. The following example will scan TCP and UDP ports 53 and 88, as well as TCP ports 80 and 443, and UDP port 123:
|
||||
|
||||
```
|
||||
autorecon --ports 53,T:80,443,U:123,B:88
|
||||
autorecon --ports 53,T:80,443,U:123,B:88 <target>
|
||||
```
|
||||
|
||||
## Max Scans
|
||||
|
|
@ -217,4 +217,17 @@ Since AutoRecon is multi-threaded, it can launch multiple scans against multiple
|
|||
|
||||
To prevent AutoRecon from port scanning too many targets at once and using up all scans, the number of scans reserved for PortScan plugins is calculated as 20% of the max. By default, the maximum number of scans is 50, so 10 are reserved for PortScans, with the other 40 reserved for ServiceScans. Note that when there are no more targets to port scan, AutoRecon will allow remaining ServiceScan plugins to use scans reserved for PortScans plugins.
|
||||
|
||||
The `-m` and `--max-scans` command line option controls the maximum number of scans AutoRecon should be running at any time. It must be at least one, and cannot be more than the max-port-scans value (but can be equal to it).
|
||||
The `-m` and `--max-scans` command line options control the maximum number of scans AutoRecon should be running at any time. It must be at least one, and cannot be less than the max-port-scans value (but can be equal to it). The following example sets the max number of scans to 10:
|
||||
|
||||
```
|
||||
autorecon -m 10 <target>
|
||||
```
|
||||
|
||||
## Max Port Scans
|
||||
|
||||
The max port scans option controls the maximum number of PortScans that can be running at any one time. This defaults to 20% of the max scans value (see above), however this can be overridden using the `-mp` and `--max-port-scans` command line options. It must be at least one, and cannot be more than the max scans value (but can be equal to it). The following example sets the max number of port scans to 5:
|
||||
|
||||
|
||||
```
|
||||
autorecon -mp 5 <target>
|
||||
```
|
||||
Loading…
Reference in New Issue