Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
nmap
/
Scan specific ports
Scan specific ports
nmap
Scan only specified ports
nmap -p 22,80,443,8080 192.168.1.1
⎘ copy
#nmap
#network
#ports
more nmap
all 15 commands →
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
Output to XML
nmap -oX scan.xml 192.168.1.1