Forum › Hacking Etico › Nmap cheatsheet: tutti i comandi essenzi…
Nmap cheatsheet: tutti i comandi essenziali con esempi
Nmap quick reference:
```bash
# Scan base
nmap 192.168.1.1
# Con service detection e script default
nmap -sV -sC 192.168.1.1
# Tutte le porte
nmap -p- 192.168.1.1
# UDP
nmap -sU --top-ports 100 192.168.1.1
# Scan furtivo (SYN)
nmap -sS 192.168.1.1
# Vulnerability scan
nmap --script vuln 192.168.1.1
# OS detection
nmap -O 192.168.1.1
# Output su file
nmap -oN output.txt 192.168.1.1
```
⚠️ USATE SOLO sulla vostra rete o su macchine autorizzate!
Accedi per rispondere.