Basic NMAP
NMAP memiliki banyak options, berikut adalah contoh dasar penggunaan nmap:
sudo nmap -sS -O 127.0.0.1
-sS
TCP SYN scan
-O
Enable Operating System detection
-sU
UDP ports scan
-sS
TCP SYN scan
-p 20-25
Scan on ports 20 to 25
-F
Fast (limited port) scan
-Pn
Treat all hosts as online -- skip host discovery
TCP SYN and UDP scan for all ports
nmap -sS -sU -p 1-65535 192.168.0.0/24
https://nmap.org/book/man-briefoptions.html
sudo nmap -sS -O 127.0.0.1
-sS
TCP SYN scan
-O
Enable Operating System detection
-sU
UDP ports scan
-sS
TCP SYN scan
-p 20-25
Scan on ports 20 to 25
-F
Fast (limited port) scan
-Pn
Treat all hosts as online -- skip host discovery
TCP SYN and UDP scan for all ports
nmap -sS -sU -p 1-65535 192.168.0.0/24
https://nmap.org/book/man-briefoptions.html
Komentar