CVE-2020-10714: Session Fixation in WildFly Elytron
7.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.57862%
CWE
Published
2/15/2022
Updated
1/29/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.wildfly.security:wildfly-elytron | maven | <= 1.11.3 | 1.11.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper session management during FORM authentication when session IDs are URL-based. Session fixation occurs because the existing session (potentially provided by an attacker) isn't replaced after authentication. The FormAuthenticationMechanism
class is central to FORM authentication handling in WildFly Elytron. The attemptAuthentication
method would logically be responsible for session management during authentication. The lack of session invalidation/regeneration in this flow matches the described attack pattern. While no direct code is shown, the CWE-384 classification and mitigation guidance (switching to cookie-based sessions) strongly implicate session management in the FORM authentication handler.