Use SecLists with ffuf for VHost Fuzzing
SecLists ships curated DNS and vhost lists ideal for ffuf
.
Command example
ffuf -w SecLists/Discovery/DNS/namelist.txt -H "Host: FUZZ.example.com" -u http://example.com -fs 4242
-fs
filters 404-sized responses.-mc
can match specific status codes.
Diagram
flowchart LR A[SecLists namelist.txt] --> B[ffuf] B --> C[Target origin] C --> D[VHost responses]
Try Seclists/Discovery/DNS/dns-Jhaddix.txt
for broader coverage, but adjust rate limits to avoid alerts.