CVE-2013-4155: OpenStack Swift allows authenticated users to cause a denial of service
4
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.74433%
CWE
Published
5/17/2022
Updated
5/14/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
AV:N/AC:L/Au:S/C:N/I:N/A:P
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
swift | pip | < 1.9.1 | 1.9.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from improper timestamp validation in DELETE, PUT, and POST handlers. The commit diff shows these methods were modified to add checks against existing timestamps (e.g., comparing orig_timestamp and req_timestamp). Prior to the fix, these functions allowed operations with older timestamps, leading to tombstone proliferation (DELETE) or redundant updates (PUT/POST). The test cases in test_server.py explicitly validate these scenarios, confirming the vulnerable code paths.