CVE-2011-4943: ImpressPages CMS RCE
9.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.75285%
CWE
Published
4/22/2022
Updated
1/15/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
impresspages/impresspages | composer | <= 1.0.12 | 1.0.13 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from multiple functions using user-controlled parameters (cm_group/cm_name/group_key/module_key) directly in eval() calls to dynamically load modules. The GitHub patch adds Db::getMenuModModule validation before these eval() calls, confirming the original code lacked proper input sanitization. This allowed attackers to inject arbitrary PHP code via crafted module/group names, triggering CWE-94 code injection. The eval() patterns in actions.php and backend_worker.php are the primary vectors, as shown by their explicit patching in the commit diff.