nmap exploration (useful syntax)

Jun 08, 2015 09:53


Used Kali Linux box in VirtualBox  - practicing using nmap for interesting searches

find live hosts in range nmap -sP 192.168.1.1-100
syn scan scan w/OS detection: nmap -sS 192.168.1.10 -O
open port scan w/version detection (verbose): nmap -sV 192.168.1.10 -A -v
enumerate webserver directories: nmap -script http-enum.nse [host]
scanning for heartbleed: nmap -script ssl-heartbleed -script-args vulns.showall -sv [host]

nmap

Next post
Up