Infrastructure-based Enumeration
curl -s https://crt.sh/\?q\=<target-domain>\&output\=json | jq .curl -s https://crt.sh/\?q\=<target-domain>\&output\=json | jq . | grep name | cut -d":" -f2 | grep -v "CN=" | cut -d'"' -f2 | awk '{gsub(/\\n/,"\n");}1;' | sort -ufor i in $(cat subdomainlist);do host $i | grep "has address" | grep target.com | cut -d" " -f1,4;donefor i in $(cat subdomainlist);do host $i | grep "has address" | grep target.com| cut -d" " -f4 >> ip-addresses.txt;done
for i in $(cat ip-addresses.txt);do shodan host $i;donedig any target.comLast updated