Google Mass Explorer is a free automated robot for google search engine. It helps to make a google search, and parse the vulnerable targets result for a specific exploit you define.
Simple Explanation of the tool:
- Makes a google search
- Parse from each page results
- Test if each target is vulnerable for a specific exploit
Requirements:
- Python 3 and above
- Selenium
How to install and run:
Make a search with google bot:
python google_explorer.py --browser='chrome' --dork='site:gob.ve inurl:index.php' --location="Venezuela"
Run the exploit parsers to check if results can or not be vulnerable:
cd xpl_parsers python joomla_cve_2015_8562.py
Run the exploiter.py (if the original exploit is runned by command line – READ THE EXPLOIT):
cd exploits python exploiter.py --file
Usage:
google_explorer.py --dork=<arg> --browser=<arg> [--exploit_parser=<arg>] [--language=<arg>] [--location=<arg>] [--last_update=<arg>] [--google_domain=<arg>] google_explorer.py --help google_explorer.py --version
Options:
-h --help Open help menu -v --version Show version
Required options:
--dork='google dork' your favorite g00gle dork :) --browser='browser' chrome chromium
Optional options:
--language='page language' Portuguese English Arabic Romanian ... ... --location='server location' Brazil Mauritania Tunisia Marroco Japan ... ... --last_update='page last update' anytime past 24 hours past week past month past year --google_domain='google domain' google domain to use on search. Ex: google.co.uk
When the bot is making searches for targets you might see captcha from google, and using Selenium, you can type the captcha when it is displayed and the robot keeps running with no problem.