Web
Directories Enumeration
dirb http://target-ip/ /path/to/wordlist.txt
dirb http://target-ip/ /path/to/wordlist.txt -X .php,.html
Gathering URLs and JavaScript file locations with Hakrawler
https://github.com/hakluke/hakrawler
echo https://google.com | hakrawler
cat urls.txt | hakrawler # Multiple urls
cat urls.txt | hakrawler -proxy http://localhost:8080 # Requests through a proxy
echo https://google.com | hakrawler -subs # Include subdomain
Subdomain Enumeration
gobuster dns -t 30 -w subdomains.txt -d example.com
Last updated