CVE-2023-1116:
Pimcore vulnerable to Cross Site Scripting in Email Blacklist
5.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.0002%
CWE
Published
3/1/2023
Updated
3/6/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
pimcore/pimcore | composer | < 10.5.18 | 10.5.18 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from insufficient input sanitization in both backend processing (EmailController.php's blacklistAction) and frontend handling (blacklist.js operations). The PHP code lacked email-specific filtering before storing values, while the JavaScript UI components rendered unsanitized user input in confirmation dialogs and grid entries. The patches added FILTER_SANITIZE_EMAIL server-side and a client-side sanitizeEmail function, confirming these were the vulnerable points.