Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2023-2427: fix: added missing conversion to HTML entities · thorsten/phpMyFAQ@514f4df

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

CVE
#xss#git#php

Expand Up @@ -31,12 +31,12 @@ class Tags /** * @var Configuration */ private $config; private Configuration $config;
/** * @var array<int, string> */ private $recordsByTagName = []; private array $recordsByTagName = [];
/** * Constructor. Expand All @@ -59,11 +59,11 @@ public function getAllLinkTagsById(int $recordId): string $tagListing = '’;
foreach ($this->getAllTagsById($recordId) as $taggingId => $taggingName) { $title = Strings::htmlspecialchars($taggingName, ENT_QUOTES, ‘utf-8’); $title = Strings::htmlentities($taggingName); $url = sprintf('%sindex.php?action=search&tagging_id=%d’, $this->config->getDefaultUrl(), $taggingId); $oLink = new Link($url, $this->config); $oLink->itemTitle = $taggingName; $oLink->text = $taggingName; $oLink->itemTitle = $title; $oLink->text = $title; $oLink->tooltip = $title; $tagListing .= $oLink->toHtmlAnchor() . ', '; } Expand Down

Related news

GHSA-5xq3-7mw9-wj5p: Cross Site Scripting in thorsten/phpmyfaq

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

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