CVE-2023-1286:
Cross-site Scripting (XSS) in pimcore/pimcore
4.8
CVSS ScoreBasic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
3/9/2023
Updated
3/15/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
pimcore/pimcore | composer | < 10.5.19 | 10.5.19 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the unencoded rendering of text-type values in the PDF preview grid renderer. The pre-patch code handled 'bool' and 'select' types but omitted HTML encoding for 'text' type values. The patch added Ext.util.Format.htmlEncode() for text inputs, confirming this was the XSS vector. The function's direct role in generating HTML from user-controlled input without encoding makes it clearly vulnerable.