Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2023-5316: fix: added missing conversion to HTML entities · thorsten/phpMyFAQ@332d2e4

Cross-site Scripting (XSS) - DOM in GitHub repository thorsten/phpmyfaq prior to 3.1.18.

CVE
#xss#git#php

Expand Up

@@ -22,6 +22,7 @@

use phpMyFAQ\Helper\AdministrationHelper;

use phpMyFAQ\Helper\LanguageHelper;

use phpMyFAQ\Helper\PermissionHelper;

use phpMyFAQ\Strings;

use phpMyFAQ\System;

use phpMyFAQ\Utils;

Expand Down Expand Up

@@ -95,7 +96,7 @@ function renderInputForm($key, $type)

is_numeric($value) ? ‘number’ : $type,

$key,

$key,

$value

Strings::htmlentities($value)

);

if (‘api.apiClientToken’ === $key) {

echo '<div class="input-group-append">’;

Expand Down Expand Up

@@ -143,7 +144,7 @@ function renderInputForm($key, $type)

printf(

'<input class="form-control" type="password" autocomplete="off" name="edit[%s]" value="%s">’,

$key,

$faqConfig->get($key)

Strings::htmlentities($faqConfig->get($key))

);

echo "</div>\n";

break;

Expand Down

Related news

GHSA-58v7-58c2-qwm9: phpMyFAQ Cross-site Scripting vulnerability

Cross-site Scripting (XSS) - DOM in GitHub repository thorsten/phpmyfaq prior to 3.1.18.

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