CVE-2014-5253: OpenStack Keystone Domain-scoped tokens don't get revoked
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.53641%
CWE
Published
5/17/2022
Updated
11/26/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
keystone | pip | < 8.0.0a0 | 8.0.0a0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper handling of domain-scoped tokens in revocation processing. The commit diff shows the fix occurred in build_token_values, where domain-scoped token data was not being translated into revocation event attributes. Specifically, the function didn't extract the domain ID from domain-scoped tokens and populate 'assignment_domain_id', making revocation events unable to target these tokens. The CWE-613 (session expiration flaw) and patch message directly correlate to this function's logic gap.