1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/nmap.md
2015-12-29 06:30:36 -08:00

19 lines
377 B
Markdown

# nmap
> Network exploration tool and security / port scanner
- scan open ports of a single host
`nmap {{192.168.0.1}}`
- discover hosts in the 192.168.0.X area (no port scan)
`nmap -sn {{192.168.0.1/24}}`
- faster scan of a single host (scans for common ports)
`nmap -F {{192.168.0.1}}`
- faster scan of a subnet (scans for common ports)
`nmap -F {{192.168.0.1/24}}`