From ac1f49a8d936a91831162bafda0dd7236ee95108 Mon Sep 17 00:00:00 2001 From: "dkl%redhat.com" <> Date: Fri, 12 Sep 2008 20:10:11 +0000 Subject: Bug 453767 - Passwords containing wide characters causes system error Patch by David Lawrence - a/r=mkanat --- Bugzilla/Auth/Verify/DB.pm | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Bugzilla/Auth') diff --git a/Bugzilla/Auth/Verify/DB.pm b/Bugzilla/Auth/Verify/DB.pm index 88ad78d54..f2c008dbf 100644 --- a/Bugzilla/Auth/Verify/DB.pm +++ b/Bugzilla/Auth/Verify/DB.pm @@ -53,6 +53,11 @@ sub check_credentials { "SELECT cryptpassword FROM profiles WHERE userid = ?", undef, $user_id); + # Wide characters cause crypt to die + if (Bugzilla->params->{'utf8'}) { + utf8::encode($password) if utf8::is_utf8($password); + } + # Using the internal crypted password as the salt, # crypt the password the user entered. my $entered_password_crypted = crypt($password, $real_password_crypted); -- cgit v1.2.3-24-g4f1b