nmap
Installation
SKILL.md
Identity
| Property | Value |
|---|---|
| Binary | nmap |
| Config | No persistent config — invoked directly |
| Logs | No persistent logs — output to terminal |
| Type | CLI tool |
| Install | apt install nmap / dnf install nmap |
Key Operations
| Task | Command |
|---|---|
| Ping sweep a subnet | nmap -sn 192.168.1.0/24 |
| TCP SYN scan (requires root) | sudo nmap -sS 192.168.1.1 |
| Full port scan (all 65535 ports) | nmap -p- 192.168.1.1 |
| Service version detection | nmap -sV 192.168.1.1 |
| OS detection (requires root) | sudo nmap -O 192.168.1.1 |
Related skills