MyBB Community Forums

Full Version: Force Password Reset [1.6.6]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi. My forum was recently compromised and so I wish to force a password reset on all users. How would I go about doing this?
Thanks.
You could use that or run a Query:
UPDATE `mybb_users` SET `password` = '098f6bcd4621d373cade4e832627b4f6', `salt` = '' WHERE `uid` = 'X' 

Change the X in the UID section to the UID for the account, and the password will be "test" No Spaces, No Capital Letters.

Do this if you want too,

UPDATE mybb_users SET loginkey='';

It resets the loginkey so all users have to regenerate one.
(2012-04-11, 11:50 AM)Yaldaram Wrote: [ -> ]You may use this plugin: http://mods.mybb.com/view/force-password-change

That plugin is incompatible with MyBB 1.6.6 Sad

(2012-04-11, 11:56 AM)iHydra Wrote: [ -> ]You could use that or run a Query:
UPDATE `mybb_users` SET `password` = '098f6bcd4621d373cade4e832627b4f6', `salt` = '' WHERE `uid` = 'X' 

Change the X in the UID section to the UID for the account, and the password will be "test" No Spaces, No Capital Letters.

Do this if you want too,

UPDATE mybb_users SET loginkey='';

It resets the loginkey so all users have to regenerate one.

Thanks. Do I need to run the query manually for each user?
(2012-04-11, 12:03 PM)Novacrux Wrote: [ -> ]
(2012-04-11, 11:50 AM)Yaldaram Wrote: [ -> ]You may use this plugin: http://mods.mybb.com/view/force-password-change

That plugin is incompatible with MyBB 1.6.6 Sad

Open plugin file and find;
"compatibility"     => "1605"
and Change it into;
"compatibility"     => "16*"