Directory/VHost Enumeration
Directory Enumeration
gobuster dir -u <URL> -w <WORDLIST> -o <OUTPUT FILE> -b 302,404 -k
gobuster dir -u <URL> -w <WORDLIST> -o <OUTPUT FILE> -x <EXTENSIONS> -b 404 -k
feroxbuster -u <URL> -x <EXTENSIONS>
fuff -w <WORDLIST> -u http://<IP>/FUZZ
fuff -w <WORDLIST> -u http://<IP>/FUZZ -fc <STATUS CODE TO IGNORE>
fuff -w <WORDLIST> -u http://<IP>/FUZZ -e <EXTENSIONS>
dirsearch -u <URL> -e <EXTENSIONS>Virtual Host Enumeration
ffuf -w /usr/share/wordlists/seclists/Discovery/DNS/namelist.txt -u http://10.10.11.136 -H "HOST:FUZZ.panda.htb" > vhost-result.txt
cat vhost-result.txt | grep FUZZExtensions
Recommended dictionaries:
https://github.com/danielmiessler/SecLists/tree/master/Discovery/Web-Content
raft-large-directories-lowercase.txt
directory-list-2.3-medium.txt
RobotsDisallowed/top10000.txt
/usr/share/wordlists/dirb/common.txt
/usr/share/wordlists/dirb/big.txt
/usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt
Last updated