VHosts
Why VHost Enumeration Matters
Enumeration Techniques
Using ffuf (Recommended)
# Basic vhost fuzzing
ffuf -w /usr/share/seclists/Discovery/DNS/subdomains-top1million-5000.txt \
-u http://10.10.10.10 -H "Host: FUZZ.target.com" -fs 0
# Filter by response size (adjust based on default response)
ffuf -w /usr/share/seclists/Discovery/DNS/subdomains-top1million-20000.txt \
-u http://10.10.10.10 -H "Host: FUZZ.target.com" -fs 4242
# Filter by status code
ffuf -w wordlist.txt -u http://10.10.10.10 -H "Host: FUZZ.target.com" -fc 400,404
# With HTTPS
ffuf -w wordlist.txt -u https://10.10.10.10 -H "Host: FUZZ.target.com" -fs 0Using gobuster
Using wfuzz
Specialized Tools
Finding VHosts Without DNS
Adding Discovered VHosts
Wordlists for VHost Fuzzing
Related Topics
Last updated
Was this helpful?