Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 391 Bytes

nmap.md

File metadata and controls

33 lines (21 loc) · 391 Bytes

nmap

good to know

  • adding -oG - to the end of the command make easier to parse

common usage

  • ping scan a range
nmap -sP 10.0.0.1-254
  • scan a few specific ports on a range of IPs
nmap -p22,80,443 192.168.0.0/24
  • scan a range of ports
nmap -p1024-5060 192.168.0.1

deeper analysis

  • OS detecetion
nmap 192.168.1.1 -O