diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-10-16 18:05:10 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-10-16 18:05:10 +0200 |
commit | 3771585c730f31f36a5efa3bd6b053ddf66bb2ba (patch) | |
tree | 7e01b7252cf9246d00ae56caa0db014121483258 /Bugzilla | |
parent | f3b17d9f5351d9eca8d2c7f0feb272432fc398c9 (diff) | |
download | bugzilla-3771585c730f31f36a5efa3bd6b053ddf66bb2ba.tar.gz bugzilla-3771585c730f31f36a5efa3bd6b053ddf66bb2ba.tar.xz |
Bug 906745 - In MySQL, tokens are not case-sensitive, reducing total entropy and allowing easier brute force
r=LpSolit,a=glob
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Token.pm | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/Bugzilla/Token.pm b/Bugzilla/Token.pm index 2bb68e721..9c2242f63 100644 --- a/Bugzilla/Token.pm +++ b/Bugzilla/Token.pm @@ -275,13 +275,18 @@ sub Cancel { # Get information about the token being canceled. trick_taint($token); - my ($issuedate, $tokentype, $eventdata, $userid) = - $dbh->selectrow_array('SELECT ' . $dbh->sql_date_format('issuedate') . ', + my ($db_token, $issuedate, $tokentype, $eventdata, $userid) = + $dbh->selectrow_array('SELECT token, ' . $dbh->sql_date_format('issuedate') . ', tokentype, eventdata, userid FROM tokens WHERE token = ?', undef, $token); + # Some DBs such as MySQL are case-insensitive by default so we do + # a quick comparison to make sure the tokens are indeed the same. + (defined $db_token && $db_token eq $token) + || ThrowCodeError("cancel_token_does_not_exist"); + # If we are canceling the creation of a new user account, then there # is no entry in the 'profiles' table. my $user = new Bugzilla::User($userid); @@ -346,10 +351,17 @@ sub GetTokenData { $token = clean_text($token); trick_taint($token); - return $dbh->selectrow_array( - "SELECT userid, " . $dbh->sql_date_format('issuedate') . ", eventdata - FROM tokens + my @token_data = $dbh->selectrow_array( + "SELECT token, userid, " . $dbh->sql_date_format('issuedate') . ", eventdata + FROM tokens WHERE token = ?", undef, $token); + + # Some DBs such as MySQL are case-insensitive by default so we do + # a quick comparison to make sure the tokens are indeed the same. + my $db_token = shift @token_data; + return undef if (!defined $db_token || $db_token ne $token); + + return @token_data; } # Deletes specified token |