Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2023-0307: fix: added missing check on password length · thorsten/phpMyFAQ@8beed2f

Weak Password Requirements in GitHub repository thorsten/phpmyfaq prior to 3.1.10.

CVE
#git#php#auth

@@ -776,14 +776,17 @@

break;

}

$userData = [

‘display_name’ => $userName,

‘email’ => $email,

‘is_visible’ => $isVisible === ‘on’ ? 1 : 0

];

$success = $user->setUserData($userData);

if (0 !== strlen($password) && 0 !== strlen($confirm)) {

if (strlen($password) <= 7 || strlen($confirm) <= 7) {

$message = [‘error’ => $PMF_LANG[‘ad_passwd_fail’]];

break;

} else {

$userData = [

‘display_name’ => $userName,

‘email’ => $email,

‘is_visible’ => $isVisible === ‘on’ ? 1 : 0

];

$success = $user->setUserData($userData);

foreach ($user->getAuthContainer() as $author => $auth) {

if ($auth->setReadOnly()) {

continue;

Related news

GHSA-4p88-cfhq-f3vg: phpMyFAQ has Weak Password Requirements

Weak Password Requirements in GitHub repository thorsten/phpmyfaq prior to 3.1.10.

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907