Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
nmap
/
Ping scan (host discovery)
Ping scan (host discovery)
nmap
Discover live hosts without port scan
nmap -sn 192.168.1.0/24
⎘ copy
#nmap
#network
#ping
more nmap
all 15 commands →
Scan specific ports
nmap -p 22,80,443,8080 192.168.1.1
Scan port range
nmap -p 1-1024 192.168.1.1
UDP scan
nmap -sU 192.168.1.1
Run default scripts
nmap -sC 192.168.1.1
Run specific NSE script
nmap --script http-title 192.168.1.1