├── .gitignore ├── LICENSE ├── README.md ├── exploits ├── exploiter.py ├── filthyc0w.pht ├── joomla-rce-2-shell.py ├── joomraa.py └── struntsrce.py ├── google_explorer.py ├── plugins ├── __init__.py ├── apache_rce_struts2_cve_2017_5638.py ├── cors_misc.py ├── drupalgeddonrce2.py ├── jboss_finder.py ├── joomla_cve_2015_8562.py ├── joomla_cve_2016_8870.py ├── joomla_joomanage.py ├── pl_filter.py ├── trace_axd.py ├── verbose_sqli.py └── wordpress_cve_2015_1579.py ├── requirements.txt ├── utils ├── banner.txt └── google_domains.txt └── utils_scripts ├── joomla-rce-2-shell.py └── joomla_rce_exploiter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/README.md -------------------------------------------------------------------------------- /exploits/exploiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/exploits/exploiter.py -------------------------------------------------------------------------------- /exploits/filthyc0w.pht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/exploits/filthyc0w.pht -------------------------------------------------------------------------------- /exploits/joomla-rce-2-shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/exploits/joomla-rce-2-shell.py -------------------------------------------------------------------------------- /exploits/joomraa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/exploits/joomraa.py -------------------------------------------------------------------------------- /exploits/struntsrce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/exploits/struntsrce.py -------------------------------------------------------------------------------- /google_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/google_explorer.py -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/apache_rce_struts2_cve_2017_5638.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/apache_rce_struts2_cve_2017_5638.py -------------------------------------------------------------------------------- /plugins/cors_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/cors_misc.py -------------------------------------------------------------------------------- /plugins/drupalgeddonrce2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/drupalgeddonrce2.py -------------------------------------------------------------------------------- /plugins/jboss_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/jboss_finder.py -------------------------------------------------------------------------------- /plugins/joomla_cve_2015_8562.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/joomla_cve_2015_8562.py -------------------------------------------------------------------------------- /plugins/joomla_cve_2016_8870.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/joomla_cve_2016_8870.py -------------------------------------------------------------------------------- /plugins/joomla_joomanage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/joomla_joomanage.py -------------------------------------------------------------------------------- /plugins/pl_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/pl_filter.py -------------------------------------------------------------------------------- /plugins/trace_axd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/trace_axd.py -------------------------------------------------------------------------------- /plugins/verbose_sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/verbose_sqli.py -------------------------------------------------------------------------------- /plugins/wordpress_cve_2015_1579.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/plugins/wordpress_cve_2015_1579.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | docopt 3 | lxml 4 | selenium 5 | requests 6 | -------------------------------------------------------------------------------- /utils/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/utils/banner.txt -------------------------------------------------------------------------------- /utils/google_domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/utils/google_domains.txt -------------------------------------------------------------------------------- /utils_scripts/joomla-rce-2-shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/utils_scripts/joomla-rce-2-shell.py -------------------------------------------------------------------------------- /utils_scripts/joomla_rce_exploiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paralelo14/google_explorer/HEAD/utils_scripts/joomla_rce_exploiter.py --------------------------------------------------------------------------------