mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
ENHANCEMENT: Use the best blowfish encryption available - this fixes fragility between PHP versions and system installations
This commit is contained in:
parent
89fc8e5fdd
commit
5cf3720bf0
@ -147,26 +147,120 @@ class PasswordEncryptor_Blowfish extends PasswordEncryptor {
|
||||
protected static $cost = 10;
|
||||
|
||||
function encrypt($password, $salt = null, $member = null) {
|
||||
// Although $2a$ has flaws in PHP < 5.3.7 with certain non-unicode passwords,
|
||||
// $2y$ doesn't exist at all. We use $2a$ across the board. Note that this will
|
||||
// mean that a password generated on PHP < 5.3.7 will fail if PHP gets upgraded to >= 5.3.7
|
||||
// See http://open.silverstripe.org/ticket/7276 and https://bugs.php.net/bug.php?id=55477
|
||||
$method_and_salt = '$2a$' . $salt;
|
||||
$encrypted_password = crypt($password, $method_and_salt);
|
||||
// See: http://nz.php.net/security/crypt_blowfish.php
|
||||
// There are three version of the algorithm - y, a and x, in order
|
||||
// of decreasing security. Attempt to use the strongest version.
|
||||
$encrypted_password = $this->encrypt_y($password, $salt);
|
||||
if(!$encrypted_password) {
|
||||
$encrypted_password = $this->encrypt_a($password, $salt);
|
||||
}
|
||||
if(!$encrypted_password) {
|
||||
$encrypted_password = $this->encrypt_x($password, $salt);
|
||||
}
|
||||
|
||||
// We *never* want to generate blank passwords. If something
|
||||
// goes wrong, throw an exception.
|
||||
if(strpos($encrypted_password, $method_and_salt) === false) {
|
||||
if(strpos($encrypted_password, '$2') === false) {
|
||||
throw new PasswordEncryptor_EncryptionFailed('Blowfish password encryption failed.');
|
||||
}
|
||||
|
||||
// Remove the method and salt from the password, as the salt
|
||||
// is stored in a separate column.
|
||||
return substr($encrypted_password, strlen($method_and_salt));
|
||||
return $encrypted_password;
|
||||
}
|
||||
|
||||
function salt($password, $memeber = null) {
|
||||
function encrypt_x($password, $salt) {
|
||||
$method_and_salt = '$2x$' . $salt;
|
||||
$encrypted_password = crypt($password, $method_and_salt);
|
||||
|
||||
if(strpos($encrypted_password, '$2x$') === 0) {
|
||||
return $encrypted_password;
|
||||
}
|
||||
|
||||
// Check if system a is actually x, and if available, use that.
|
||||
if($this->what_is_a() == 'x') {
|
||||
$method_and_salt = '$2a$' . $salt;
|
||||
$encrypted_password = crypt($password, $method_and_salt);
|
||||
|
||||
if(strpos($encrypted_password, '$2a$') === 0) {
|
||||
$encrypted_password = '$2x$' . substr($encrypted_password, strlen('$2a$'));
|
||||
return $encrypted_password;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function encrypt_y($password, $salt) {
|
||||
$method_and_salt = '$2y$' . $salt;
|
||||
$encrypted_password = crypt($password, $method_and_salt);
|
||||
|
||||
if(strpos($encrypted_password, '$2y$') === 0) {
|
||||
return $encrypted_password;
|
||||
}
|
||||
|
||||
// Check if system a is actually y, and if available, use that.
|
||||
if($this->what_is_a() == 'y') {
|
||||
$method_and_salt = '$2a$' . $salt;
|
||||
$encrypted_password = crypt($password, $method_and_salt);
|
||||
|
||||
if(strpos($encrypted_password, '$2a$') === 0) {
|
||||
$encrypted_password = '$2y$' . substr($encrypted_password, strlen('$2a$'));
|
||||
return $encrypted_password;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function encrypt_a($password, $salt) {
|
||||
if($this->what_is_a() == 'a') {
|
||||
$method_and_salt = '$2a$' . $salt;
|
||||
$encrypted_password = crypt($password, $method_and_salt);
|
||||
|
||||
if(strpos($encrypted_password, '$2a$') === 0) {
|
||||
return $encrypted_password;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* The algorithm returned by using '$2a$' is not consistent -
|
||||
* it might be either the correct (y), incorrect (x) or mostly-correct (a)
|
||||
* version, depending on the version of PHP and the operating system,
|
||||
* so we need to test it.
|
||||
*/
|
||||
function what_is_a() {
|
||||
// Test hashes taken from http://cvsweb.openwall.com/cgi/cvsweb.cgi/~checkout~/Owl/packages/glibc/crypt_blowfish/wrapper.c?rev=1.9.2.1;content-type=text%2Fplain
|
||||
$x_or_y = crypt("\xff\xa334\xff\xff\xff\xa3345", '$2a$05$/OK.fbVrR/bpIqNJ5ianF.o./n25XVfn6oAPaUvHe.Csk4zRfsYPi') == '$2x$05$/OK.fbVrR/bpIqNJ5ianF.o./n25XVfn6oAPaUvHe.Csk4zRfsYPi';
|
||||
$y_or_a = crypt("\xa3", '$2a$05$/OK.fbVrR/bpIqNJ5ianF.Sa7shbm4.OzKpvFnX1pQLmQW96oUlCq') == '$2a$05$/OK.fbVrR/bpIqNJ5ianF.Sa7shbm4.OzKpvFnX1pQLmQW96oUlCq';
|
||||
|
||||
if($x_or_y && $y_or_a) {
|
||||
return 'y';
|
||||
} elseif($x_or_y) {
|
||||
return 'x';
|
||||
} elseif($y_or_a) {
|
||||
return 'a';
|
||||
}
|
||||
|
||||
return 'unknown';
|
||||
}
|
||||
|
||||
function salt($password, $member = null) {
|
||||
$generator = new RandomGenerator();
|
||||
return self::$cost . '$' . substr($generator->generateHash('sha1'), 0, 21);
|
||||
return self::$cost . '$' . substr($generator->generateHash('sha1'), 0, 22);
|
||||
}
|
||||
|
||||
function check($hash, $password, $salt = null, $member = null) {
|
||||
if(strpos($hash, '$2y$') === 0) {
|
||||
return $hash === $this->encrypt_y($password, $salt);
|
||||
} elseif(strpos($hash, '$2a$') === 0) {
|
||||
return $hash === $this->encrypt_a($password, $salt);
|
||||
} elseif(strpos($hash, '$2x$') === 0) {
|
||||
return $hash === $this->encrypt_x($password, $salt);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -65,11 +65,12 @@ class PasswordEncryptorTest extends SapphireTest {
|
||||
Config::inst()->update('PasswordEncryptor', 'encryptors', array('test_blowfish'=>array('PasswordEncryptor_Blowfish'=>'')));
|
||||
$e = PasswordEncryptor::create_for_algorithm('test_blowfish');
|
||||
$password = 'mypassword';
|
||||
$salt = '10$mysaltmustbetwen2char';
|
||||
$this->assertEquals(
|
||||
crypt($password, '$2y$' . $salt),
|
||||
'$2y$' . $salt . $e->encrypt($password, $salt)
|
||||
);
|
||||
$salt = '10$mysaltmustbetwen2chars';
|
||||
|
||||
$this->assertTrue($e->what_is_a() == 'y' || $e->what_is_a() == 'x' || $e->what_is_a() == 'a');
|
||||
$this->assertTrue($e->check($e->encrypt($password, $salt), "mypassword", $salt));
|
||||
$this->assertFalse($e->check($e->encrypt($password, $salt), "anotherpw", $salt));
|
||||
$this->assertFalse($e->check($e->encrypt($password, $salt), "mypassword", '10$anothersaltetwen2chars'));
|
||||
}
|
||||
|
||||
function testEncryptorPHPHashCheck() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user