mirror of https://github.com/cheat/cheat.git
[NMAP] Speed up nmap scan
This commit is contained in:
parent
5805d2c52e
commit
bfaf39d7ab
|
@ -8,7 +8,7 @@ nmap -iL [list.txt]
|
|||
nmap -6 [target]
|
||||
|
||||
# OS detection:
|
||||
nmap -O [target]
|
||||
nmap -O --osscan_guess [target]
|
||||
|
||||
# Save output to text file:
|
||||
nmap -oN [output.txt] [target]
|
||||
|
@ -22,6 +22,9 @@ nmap -source-port [port] [target]
|
|||
# Do an aggressive scan:
|
||||
nmap -A [target]
|
||||
|
||||
# Speedup your scan:
|
||||
nmap -T5 --min-parallelism=50 [target]
|
||||
|
||||
# Traceroute:
|
||||
nmap -traceroute [target]
|
||||
|
||||
|
|
Loading…
Reference in New Issue