CVE-2013-2166:
Inadequate Encryption Strength in python-keystoneclient
9.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.26141%
CWE
Published
10/12/2021
Updated
10/25/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 |
---|---|---|---|
python-keystoneclient | pip | >= 0.2.3, <= 0.2.5 | 0.3.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from inadequate encryption strength in memcache handling. The commit diff shows removal of _protect_cache_value/_unprotect_cache_value and major changes to memcache_crypt.py. The original implementations used AES CFB (vulnerable to bit-flipping), SHA1 MAC without proper key derivation, and lacked HMAC integrity for encrypted data. The patch introduced HMAC-SHA384, AES-CBC with PKCS7 padding, and constant-time comparison - directly addressing these flaws. The CWE-326 classification confirms encryption strength issues in these functions.