The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Reset Passwords for All Users?
Is there a way I can reset the passwords for all users and then send them all and email letting them know how to proceed?
|
#2
|
|||
|
|||
Phpmyadmin, go to the user table, drop the password column, then add it back, with the same details (varchar32, adjust priv's etc....)
Mass mail your users with this: Hello $username, We have recently had a issue with the site, please reset your password via the link below. http://www.yoursite.com/forum/login.php?do=lostpw&email=$email Thanks Staff |
#3
|
||||
|
||||
For some that might be a bit "much" and they could potentially mess up the table if they don't add it back properly.
I would instead run this query: Code:
UPDATE `user` SET `password` = MD5(CONCAT(MD5('HibbityJibbityBl@hBl@h'), `user`.`salt`)) WHERE `userid` != 1; Now everyone's password is: Code:
HibbityJibbityBl@hBl@h |
Благодарность от: | ||
blind-eddie |
#4
|
||||
|
||||
I've used this in the past when I had to reset all passwords and email all users on one of my vb4 boards.
https://vborg.vbsupport.ru/showthrea...904#post479904 |
#5
|
||||
|
||||
I would expand on this to say this needs to be done for all administrators/staff accounts, regardless of how much access they have. And enforcing a 2FA solution (at least on staff accounts including administrators and moderators) such as Google Authenticator also goes a long way when it comes to protecting your users and website from malicious users.
|
#6
|
|||
|
|||
Quote:
|
#7
|
||||
|
||||
For vB4, yes. I used to use a modification that I wrote myself, however as it's not commercially available (and likely never will be) I would suggest looking at DBTech Two Factor Authentication. This should achieve the same as what my own plugin did. 2FA really beefs up the security of your platform when used correctly!
|
#8
|
|||
|
|||
Quote:
This is probably a better idea: Code:
UPDATE `user` SET `password` = NULL WHERE `userid` != 1; |
Благодарность от: | ||
x iJailBreak x |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|