├── .github ├── FUNDING.yml ├── activate_plugin.png ├── dashboard.png ├── demo.mp4 ├── download_file_web.png ├── exec_code_web.png └── plugin_add_new.png ├── Makefile ├── README.md ├── console.py ├── dist └── wordpress-webshell-plugin-1.1.0.zip ├── test_env ├── Dockerfile └── Makefile └── wp_webshell ├── LICENSE.TXT ├── index.html └── wp_webshell.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/activate_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/.github/activate_plugin.png -------------------------------------------------------------------------------- /.github/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/.github/dashboard.png -------------------------------------------------------------------------------- /.github/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/.github/demo.mp4 -------------------------------------------------------------------------------- /.github/download_file_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/.github/download_file_web.png -------------------------------------------------------------------------------- /.github/exec_code_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/.github/exec_code_web.png -------------------------------------------------------------------------------- /.github/plugin_add_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/.github/plugin_add_new.png -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/README.md -------------------------------------------------------------------------------- /console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/console.py -------------------------------------------------------------------------------- /dist/wordpress-webshell-plugin-1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/dist/wordpress-webshell-plugin-1.1.0.zip -------------------------------------------------------------------------------- /test_env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/test_env/Dockerfile -------------------------------------------------------------------------------- /test_env/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/test_env/Makefile -------------------------------------------------------------------------------- /wp_webshell/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/wp_webshell/LICENSE.TXT -------------------------------------------------------------------------------- /wp_webshell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/wp_webshell/index.html -------------------------------------------------------------------------------- /wp_webshell/wp_webshell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0dalirius/Wordpress-webshell-plugin/HEAD/wp_webshell/wp_webshell.php --------------------------------------------------------------------------------