CVE-2012-2144:
OpenStack Horizon Session Fixation
6.8
CVSS ScoreBasic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
5/17/2022
Updated
11/21/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
AV:N/AC:M/Au:N/C:P/I:P/A:P
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
horizon | pip | < 8.0.0a0 | 8.0.0a0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from using session.clear() instead of session.flush() or cycle_key(). Clear() removes session data but preserves the session ID, enabling session fixation attacks. The patch replaced all clear() calls with user_logout (which calls flush()) and added session key cycling in auth_forms. The identified functions directly used the vulnerable session.clear() method prior to patching, as shown in the commit diffs. Each was modified in the security fix, confirming their role in the vulnerability.