tldr/pages/common/nmap.md

20 lines
377 B
Markdown
Raw Normal View History

2014-02-02 09:57:44 +00:00
# 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}}`
2015-12-29 00:34:45 +00:00
- 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}}`