Nmap Übersicht
Zur Navigation springen
Zur Suche springen
| Befehl | Beschreibung |
|---|---|
| nmap <host> | Simple scan |
| nmap -v <host> | Verbose mode |
| nmap -vv <host> | Increased verbose mode |
| nmap -sS <host> | TCP scan |
| nmap -sU <host> | UDP scan |
| nmap -sn <network> | Scan without sending packets |
| nmap -sp <network> | Host discovery |
| nmap-open <network> | Hosts with open ports |
| nmap -Pn <host> | Ping scan |
| nmap <start_ip>-<end_ip> | Range of IP addresses |
| nmap -p <host> | All ports |
| nmap -p 1-1000 <host> | 1000 most common ports |
| nmap -sC <host> | Script scan |
| nmap -sV <host> | Services and versions |
| nmap -SCV <host> | Complete scan |
| nmap -O <host> | Operating systems |
| nmap -A <host> | Operating system and services |
| nmap -T5 -F <host> | Fast scan of 100 ports |
| nmap -T1 <host> | Slow scan (avoid IDS) |
| nmap -script vuln <host> | Vulnerability scan |
| nmap -script <script> <host> | Use specific scripts |
| nmap -stats-every 30s <host> | Statistics every 30 seconds |
| nmap --min-rate 1000 <host> | Minimum packet rate |
| nmap --top-ports 20 <host> | 20 most common ports |
| nmap -oX output.xml <host> | Export in XML |
| nmap -webxml <host> | Export in Web XML |