Skip to content
F1shh edited this page Mar 31, 2022 · 1 revision

Nmap is a very useful and effective port-scanner / network enumeration tool. Here are some fun things you can do with it:

Port Scans

Aggressive Scan a single port

nmap -p<port> -A <ip>

Syn Scan for all open ports

nmap -p- -sS <ip>

Fuck you tell me scan

nmap -p- -v -T4 <ip>

Enumeration

SMB Enumeration

nmap -p445 --script=smb-enum-shares.nse,smb-enum-users.nse <ip>

RPC Enumeration

nmap -p 111 --script=nds-la,nfs-statfs,nfs-showmount <ip>

Host Discovery (ping sweep)

nmap -sn <ip>/<cidr>