Scanning & Enumeration
Host Discovery
netdiscover -i eth0
nmap -sN 192.168.1.0/24
Port Discovery
nmap -sS $TARGET_IP -oA $OUPUT_FILE
nmap -Pn 192.168.0.10-12 -oA $OUPUT_FILE
unicornscan $TARGET_IP:a
Service Identification
nmap -sV 192.168.20.10-12 -oA $OUPUT_FILE
Last updated
Was this helpful?