Linux - Network Auditing NMAP (2)

Regular Scan
nmap -v 192.168.0.224

Intense Scan
nmap -T Aggressive -A -v 192.168.0.224

Quick Scan
nmap -T Aggressive -v -n 192.168.0.224

Quick and verbose scan
nmap -d -T Aggressive --packet_trace -v -n 192.168.0.224


Operating System Detection
nmap -O -v 192.168.0.224

Quick Operating System detection
nmap -T Aggressive -O -v 192.168.0.224


Quick Full version Detection Scan
nmap -T Aggressive -sV -n -O -v 192.168.0.224

Quick Services version detection
nmap -T Aggressive -sV -v 192.168.0.224

Comments