mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 06:22:07 +02:00
rustscan: add page (#12069)
This commit is contained in:
parent
7ec152f76d
commit
79ad681c09
1 changed files with 36 additions and 0 deletions
36
pages/common/rustscan.md
Normal file
36
pages/common/rustscan.md
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# rustscan
|
||||||
|
|
||||||
|
> Fast Port Scanner written in Rust with `nmap` built in.
|
||||||
|
> More information: <https://github.com/RustScan/RustScan>.
|
||||||
|
|
||||||
|
- Scan all ports of one or more comma-delimited [a]ddresses using the default values:
|
||||||
|
|
||||||
|
`rustscan --addresses {{ip_or_hostname}}`
|
||||||
|
|
||||||
|
- Scan the [t]op 1000 ports with service and version detection:
|
||||||
|
|
||||||
|
`rustscan --top --addresses {{address_or_addresses}}`
|
||||||
|
|
||||||
|
- Scan a specific list of [p]orts:
|
||||||
|
|
||||||
|
`rustscan --ports {{port1,port2,...,portN}} --addresses {{address_or_addresses}}`
|
||||||
|
|
||||||
|
- Scan a specific range of ports:
|
||||||
|
|
||||||
|
`rustscan --range {{start-end}} --addresses {{address_or_addresses}}`
|
||||||
|
|
||||||
|
- Add script arguments to `nmap`:
|
||||||
|
|
||||||
|
`rustscan --addresses {{address_or_addresses}} -- -A -sC`
|
||||||
|
|
||||||
|
- Scan with custom [b]atch size (default: 4500) and [t]imeout (default: 1500ms):
|
||||||
|
|
||||||
|
`rustscan --batch-size {{batch_size}} --timeout {{timeout}} --addresses {{address_or_addresses}}`
|
||||||
|
|
||||||
|
- Scan with specific port order:
|
||||||
|
|
||||||
|
`rustscan --scan-order {{serial|random}} --addresses {{address_or_addresses}}`
|
||||||
|
|
||||||
|
- Scan in greppable mode (only output of the ports, no `nmap`):
|
||||||
|
|
||||||
|
`rustscan --greppable --addresses {{address_or_addresses}}`
|
Loading…
Add table
Reference in a new issue