Probing#
After doing Subdomain Enumeration and Assets Enumeration, you might want to probe the website, or find “informational” findings like subdomain takeover
Subzy#
Not a
ProjectDiscoverytool. This tool find subdomains that we can takeover
subzy run --targets domains.txtHttpx#
This tool do a simple
GETto the target domain(s) and return a status code like200,302,404, etc It can also spit more info like title, content length, etc. We can find which domains are live with status code200. Sometimes, a404doesn’t mean that it’s not live, do directory brute force.
cat all_domains.txt | httpx -sc > status.txt
cat status.txt | grep '200'cat all_domains.txt | httpx -sc -cl -location > httpx.txtEyewitness#
Not a
ProjectDiscoverytool This tool do aGETon the website, take a screenshot, then spits out a report Helps us find interesting targets to begin hacking
eyewitness -f interesting_domains.txt -d eyewitness