STEP 1 – Find out Vulnerabilities in WordPress Website
If your website has been hacked or you want to make sure no one can hack this, you must take a look on plugin files and their coding. Might be somewhere coder is using sql queries without awareness of SQL Injection way to hack wordpress website. If this is somewhere, hacker will use union query and can fetch your all database rows from wp_users table and below is an example query to fetch all wordpress users using union query to know email addresses of all users.Few months ago, Plugin all-video-gallery had a Vulnerabilities in config.php because of following code.
$_pid=$_GET['pid']
So hacker could pass this union query using pid attribute parameter in url like this.
STEP 2 – Reset WordPress Password and Get Activation Key
Now they’ll try to reset your password using administrator’s email. For this, they’ll go to login page and will click on Lost Your Password link. On this time, A new activation code will be mailed to administrator’s email and hacker will get this activation code using following query.This file output is a xml file as below
STEP 3 – Use Activation key and Reset Password
This one is last step where he’ll actually reset your password and will get full control on your wordpress website. In this step, He’ll use activation key to reset password and will follow this link http://{DOMAIN_NAME_HERE}/wp-login.php?action=rp&key={ACTIVATION_KEY_HERE}&login={USERNAME_HERE}So a hacker could be able to access your wordpress website and can have full control on your website. Normally they insert malicious code on your files or modify a plugin file to become that as a wordpress backdoor to hack your website again.
No comments:
Post a Comment