CVE-2011-4104: Django Tastypie Improper Deserialization of YAML Data
9.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.73427%
CWE
Published
5/14/2022
Updated
9/16/2024
KEV Status
No
Technology
Python
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 |
---|---|---|---|
django-tastypie | pip | < 0.9.10 | 0.9.10 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems directly from the use of yaml.load() in the from_yaml method, as shown in the commit diff replacing it with yaml.safe_load(). The CVE description explicitly identifies this method as the attack vector, and the patch confirms the vulnerability was in this specific function.