CVE-2012-4404: MoinMoin Improper Access Control
5.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.75893%
CWE
Published
5/17/2022
Updated
9/26/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
moin | pip | >= 1.9, < 1.9.5 | 1.9.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from line 242-243 in the original code where the check 'if special in entry:' erroneously looked for virtual group keywords in the group NAME string rather than the group MEMBERS list. The commit diff shows the fix changed this to check 'this_group' (the group members) instead of 'entry' (the group name). This function
is the core ACL evaluation mechanism that determines user permissions, making it the clear source of improper access control.