Password Reset for Joomla , WordPress and Joomla (new password = NEWPASS)

Reset password with Navicat Lite

Joomla:

UPDATE jos_users
SET password = MD5('NEWPASS') 
WHERE username = "admin"

Wordpress:

UPDATE wp_users 
SET user_pass = MD5( 'NEWPASS' ) 
WHERE user_login = "admin";

Drupal:

UPDATE users 
set pass= '$S$CVrRLeIr/2RlAxZgzPyu58yXbhev5OItQNCjXMrgMq9IriUKyUe.' 
WHERE uid = 1;

If you had the following message:
Sorry, there have been more than 5 failed login attempts for this account. It is temporarily blocked. Try again later or request a new password.
You can :

DELETE FROM flood


Geplaatst

in

,

door

Tags:

Reacties

Geef een reactie

Het e-mailadres wordt niet gepubliceerd. Vereiste velden zijn gemarkeerd met *