Prevent high resource usage when hashing large passwords. props mdawaffe, pento
Merges [30466] to the 3.7 branch. Built from https://develop.svn.wordpress.org/branches/3.7@30470 git-svn-id: http://core.svn.wordpress.org/branches/3.7@30461 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1e3fb4d13c
commit
3762c63026
|
@ -214,6 +214,10 @@ class PasswordHash {
|
||||||
|
|
||||||
function HashPassword($password)
|
function HashPassword($password)
|
||||||
{
|
{
|
||||||
|
if ( strlen( $password ) > 4096 ) {
|
||||||
|
return '*';
|
||||||
|
}
|
||||||
|
|
||||||
$random = '';
|
$random = '';
|
||||||
|
|
||||||
if (CRYPT_BLOWFISH == 1 && !$this->portable_hashes) {
|
if (CRYPT_BLOWFISH == 1 && !$this->portable_hashes) {
|
||||||
|
@ -249,6 +253,10 @@ class PasswordHash {
|
||||||
|
|
||||||
function CheckPassword($password, $stored_hash)
|
function CheckPassword($password, $stored_hash)
|
||||||
{
|
{
|
||||||
|
if ( strlen( $password ) > 4096 ) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
$hash = $this->crypt_private($password, $stored_hash);
|
$hash = $this->crypt_private($password, $stored_hash);
|
||||||
if ($hash[0] == '*')
|
if ($hash[0] == '*')
|
||||||
$hash = crypt($password, $stored_hash);
|
$hash = crypt($password, $stored_hash);
|
||||||
|
|
Loading…
Reference in New Issue