CVE-2024-21666: Pimcore Customer Data Framework Improper Access Control allows unprivileged user to access customers duplicates list
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.00202%
CWE
Published
1/10/2024
Updated
1/11/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| pimcore/customer-management-framework-bundle | composer | < 4.0.6 | 4.0.6 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing access control in the DuplicatesController's listAction method handling the /admin/customermanagementframework/duplicates/list endpoint. The proof-of-concept demonstrates unauthorized access, and the patch adds a permission check (checkPermission('plugin_cmf_perm_customerview')) via a new onKernelControllerEvent method. This indicates the original listAction method executed without verifying user permissions, making it the vulnerable function. The direct correlation between the missing check in the original code and the security fix confirms this assessment.