Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Latest commit

 

History

History
23 lines (12 loc) · 450 Bytes

File metadata and controls

23 lines (12 loc) · 450 Bytes

Nmap Cheat Sheet

DNS Brute Force

nmap -p 80 --script dns-brute <host>

Find virtual hosts on an IP address

nmap -p 80 --script hostmap-bfk <host>

Traceroute Geolocation

nmap -p 80 --traceroute --script traceroute-geolocation.nse  <host>

HTTP Scripts

  • HTTP Enum - web path brute force

     nmap -p 80 --script http-enum <host>
    
  • HTTP Title

     nmap -p 80 -sV --script http-title  <ip range>