CVE-2013-2217:
Improper Link Resolution Before File Access in Suds
6.2
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.35934%
CWE
Published
5/14/2022
Updated
10/28/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
suds | pip | <= 0.4 | 1.0.0 |
suds-py3 | pip | >= 0, < 1.4.4.1 | 1.4.4.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from FileCache initialization in cache.py using tempfile.gettempdir() + '/suds' when no location is specified. This creates a predictable path in world-writable /tmp, allowing symlink attacks. The init method's logic for setting self.location (lines 140-142 in original code) directly implements this vulnerable pattern. Runtime detection would show this constructor being called when processing SOAP requests, making it the primary indicator.