CVE-2011-4953: Cobbler vulnerable to code injection via unsafe YAML loading
6.8
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.71214%
CWE
Published
5/17/2022
Updated
1/15/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
AV:N/AC:M/Au:N/C:P/I:P/A:P
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
cobbler | pip | < 2.6.0 | 2.6.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability description explicitly identifies set_mgmt_parameters
in item.py as the entry point. The commit diff confirms this function was patched by replacing yaml.load
with yaml.safe_load
. CWE-94 (Code Injection) directly applies here because unsafe YAML deserialization allows arbitrary object instantiation. While other functions were also patched, this is the only one explicitly tied to the documented exploit vector.