Password Security Updater
1.0
If you have installed the Password Security MOD version 1.0.1 or less please download and apply this fix.
Updater - Bug Fix for password_security.mod versions 1.0.1 or less
Fixed bug where when Admin modifies users' profile the users' password and secret answer were changed and unusable.
For detailed installation information please visit http://www.thewebworks.com/yabbmod.htm
Matthew C. Veno
http://www.thewebworks.com
Sources/Profile.pl
if ($member{'passwrd1'} eq $settings[0]) {
$cryptpass = $member{'passwrd1'};
}
else {
fopen(SETTINGS, "$memberdir/$member{'username'}.dat");
@userProfileSettings = ;
fclose(SETTINGS);
chomp $userProfileSettings[0];
chomp $userProfileSettings[21];
if ($member{'passwrd1'} eq $userProfileSettings[0]) {
$cryptpass = $member{'passwrd1'};
}
else {
if ($member{'secretanswer'} eq $settings[21]) {
if ($member{'secretanswer'} eq $userProfileSettings[21]) {