Virtual Hosts
vHost Enumeration using CURL
$ cat ./vhosts | while read vhost;do echo "\n********\nFUZZING: ${vhost}\n********";curl -s -I http://192.168.10.10 -H "HOST: ${vhost}.randomtarget.com" | grep "Content-Length: ";done
$ curl -s http://192.168.10.10 -H "Host: dev-admin.randomtarget.com"
vHost Enumeration using FFUF
$ ffuf -w ./vhosts -u http://192.168.10.10 -H "HOST: FUZZ.randomtarget.com" -fs 612
Last updated