├── .gitignore ├── LICENSE ├── README.md ├── modules ├── _template.py ├── js │ └── test.py └── php │ └── test.py ├── plugins └── .gitkeep ├── requirements.txt ├── results └── .gitkeep └── wp_hunter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/wp_hunter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/wp_hunter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/wp_hunter/HEAD/README.md -------------------------------------------------------------------------------- /modules/_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/wp_hunter/HEAD/modules/_template.py -------------------------------------------------------------------------------- /modules/js/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/wp_hunter/HEAD/modules/js/test.py -------------------------------------------------------------------------------- /modules/php/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/wp_hunter/HEAD/modules/php/test.py -------------------------------------------------------------------------------- /plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bs4 2 | wget 3 | requests 4 | -------------------------------------------------------------------------------- /results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wp_hunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/wp_hunter/HEAD/wp_hunter.py --------------------------------------------------------------------------------