diff --git a/lib/SimpleSAML/Utils/Crypto.php b/lib/SimpleSAML/Utils/Crypto.php index 59c6cd2fa0507ed22ee0b1f00320a85c2714faa5..681c7a8a124c7039bfe2d252670771a14c1c4af2 100644 --- a/lib/SimpleSAML/Utils/Crypto.php +++ b/lib/SimpleSAML/Utils/Crypto.php @@ -429,6 +429,10 @@ class Crypto throw new \InvalidArgumentException('Invalid input parameters.'); } + if (!is_null(password_get_info($password)['algo'])) { + throw new Error\Exception("Cannot use a hash value for authentication."); + } + if (password_verify($password, $hash)) { return true; } diff --git a/tests/lib/SimpleSAML/Utils/CryptoTest.php b/tests/lib/SimpleSAML/Utils/CryptoTest.php index 697bbadbf7b087a997723332f7d38d0e4f38770d..90ac6b0622fd403a69865c307d4a84744336fec4 100644 --- a/tests/lib/SimpleSAML/Utils/CryptoTest.php +++ b/tests/lib/SimpleSAML/Utils/CryptoTest.php @@ -237,6 +237,18 @@ PHP; $this->assertFalse($res); } + /** + * Check that hash cannot be used to authenticate ith. + */ + public function testHashAsPwInvalid(): void + { + $pw = "password"; + + $hash = Crypto::pwHash($pw); + $this->expectException(Error\Exception::class); + $res = Crypto::pwValid($hash, $hash); + } + /** * @covers \SimpleSAML\Utils\Crypto::pwValid