- After finding a program, that program may have multiple Top Level Domain
- You can put the top level domain to a file
- Then you can find the multiple subdomains using
myfindomain.sh
- The subdomains will be stored in a txt file with the domain name (For example: finding subdomains for google.com it will store the subdomains in google.com.txt)
- After that you can use
curlscript.sh
- The
curlscript.sh
will simply curl all the the live subdomains and keep the curled domains in asubdomain.txt
file in output directory
git clone https://github.com/sahildari/tools
cd tools
chmod +x *.sh
cat top-level-domain.txt | bash myfindomain.sh
To curl all the we subdomains so that after that you don't have to visit every single site. Just use the grep command to see if you can find anything intersting
cat alive.txt| ./curlscript.sh
grep -irEn '<title>(.*)</title>'
To get the titles and checking out the webpages that interests you
Happy Hacking!
I have created my tools using opensource community tools