diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-09-15 20:30:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-15 20:30:40 +0200 |
commit | e9adcde4648b54db8d40f314ca938dca5080bb9c (patch) | |
tree | bd826aa5f5857e063d575fec1ec16068712edd4a /reset_password.cgi | |
parent | 06c57b6e475767923f8294cf93fd746d45f3dc6f (diff) | |
download | bugzilla-e9adcde4648b54db8d40f314ca938dca5080bb9c.tar.gz bugzilla-e9adcde4648b54db8d40f314ca938dca5080bb9c.tar.xz |
Bug 1391702 - Replace Bugzilla::User::validate_password() with calls to Data::Password::passwdqc
Diffstat (limited to 'reset_password.cgi')
-rwxr-xr-x | reset_password.cgi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/reset_password.cgi b/reset_password.cgi index 3b0e36849..86ace9e12 100755 --- a/reset_password.cgi +++ b/reset_password.cgi @@ -17,7 +17,6 @@ use Bugzilla; use Bugzilla::Constants; use Bugzilla::Error; use Bugzilla::Token; -use Bugzilla::User qw( validate_password ); use Bugzilla::Util qw( bz_crypt ); my $cgi = Bugzilla->cgi; @@ -51,7 +50,9 @@ if ($cgi->param('do_save')) { if ($old_password eq $password_1) { ThrowUserError('new_password_same'); } - validate_password($password_1, $password_2); + + Bugzilla->assert_password_is_secure($password_1); + Bugzilla->assert_passwords_match($password_1, $password_2); # update $dbh->bz_start_transaction; |