├── .gitignore ├── README.md ├── core ├── __init__.py ├── db │ ├── wpconfig.txt │ ├── wplfi.txt │ ├── wpsql.txt │ └── wpxss.txt ├── lib │ ├── __init__.py │ ├── wp_banner.py │ ├── wp_checker.py │ ├── wp_colors.py │ ├── wp_info.py │ ├── wp_print.py │ └── wp_request.py └── modules │ ├── __init__.py │ ├── wp_attack.py │ ├── wp_brute.py │ ├── wp_generic.py │ ├── wp_plugin.py │ ├── wp_theme.py │ └── wp_users.py └── wpseku.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/db/wpconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/db/wpconfig.txt -------------------------------------------------------------------------------- /core/db/wplfi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/db/wplfi.txt -------------------------------------------------------------------------------- /core/db/wpsql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/db/wpsql.txt -------------------------------------------------------------------------------- /core/db/wpxss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/db/wpxss.txt -------------------------------------------------------------------------------- /core/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/lib/wp_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/lib/wp_banner.py -------------------------------------------------------------------------------- /core/lib/wp_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/lib/wp_checker.py -------------------------------------------------------------------------------- /core/lib/wp_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/lib/wp_colors.py -------------------------------------------------------------------------------- /core/lib/wp_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/lib/wp_info.py -------------------------------------------------------------------------------- /core/lib/wp_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/lib/wp_print.py -------------------------------------------------------------------------------- /core/lib/wp_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/lib/wp_request.py -------------------------------------------------------------------------------- /core/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/modules/wp_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/modules/wp_attack.py -------------------------------------------------------------------------------- /core/modules/wp_brute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/modules/wp_brute.py -------------------------------------------------------------------------------- /core/modules/wp_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/modules/wp_generic.py -------------------------------------------------------------------------------- /core/modules/wp_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/modules/wp_plugin.py -------------------------------------------------------------------------------- /core/modules/wp_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/modules/wp_theme.py -------------------------------------------------------------------------------- /core/modules/wp_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/core/modules/wp_users.py -------------------------------------------------------------------------------- /wpseku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redshoee/WPSeku/HEAD/wpseku.py --------------------------------------------------------------------------------