mirror of
https://github.com/friendica/friendica
synced 2024-11-10 08:22:57 +00:00
Merge pull request #7734 from MrPetovan/bug/7709-catch-missing-certainty-bundle-exception
Catch missing Certainty bundle exception when checking for exposed password
This commit is contained in:
commit
d016423a7f
2 changed files with 14 additions and 3 deletions
|
@ -64,7 +64,6 @@ class Logger extends BaseObject
|
||||||
self::TRACE => 'Trace',
|
self::TRACE => 'Trace',
|
||||||
self::DEBUG => 'Debug',
|
self::DEBUG => 'Debug',
|
||||||
self::DATA => 'Data',
|
self::DATA => 'Data',
|
||||||
self::ALL => 'All',
|
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -412,6 +412,7 @@ class User
|
||||||
*
|
*
|
||||||
* @param string $password
|
* @param string $password
|
||||||
* @return bool
|
* @return bool
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public static function isPasswordExposed($password)
|
public static function isPasswordExposed($password)
|
||||||
{
|
{
|
||||||
|
@ -420,9 +421,20 @@ class User
|
||||||
'cacheDirectory' => get_temppath() . '/password-exposed-cache/',
|
'cacheDirectory' => get_temppath() . '/password-exposed-cache/',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$PasswordExposedCHecker = new PasswordExposed\PasswordExposedChecker(null, $cache);
|
try {
|
||||||
|
$passwordExposedChecker = new PasswordExposed\PasswordExposedChecker(null, $cache);
|
||||||
|
|
||||||
return $PasswordExposedCHecker->passwordExposed($password) === PasswordExposed\PasswordStatus::EXPOSED;
|
return $passwordExposedChecker->passwordExposed($password) === PasswordExposed\PasswordStatus::EXPOSED;
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
Logger::error('Password Exposed Exception: ' . $e->getMessage(), [
|
||||||
|
'code' => $e->getCode(),
|
||||||
|
'file' => $e->getFile(),
|
||||||
|
'line' => $e->getLine(),
|
||||||
|
'trace' => $e->getTraceAsString()
|
||||||
|
]);
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue