CVE-2018-1000409: Session Fixation in Jenkins
5.4
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.22924%
CWE
Published
5/14/2022
Updated
12/15/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.main:jenkins-core | maven | <= 2.138.1 | 2.138.2 |
org.jenkins-ci.main:jenkins-core | maven | >= 2.140, <= 2.145 | 2.146 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The commit diff shows security fixes were applied to the loginAndTakeBack
method in HudsonPrivateSecurityRealm.java
, specifically adding session invalidation logic. The vulnerability description explicitly states Jenkins
didn't invalidate sessions during signup, which maps directly to this authentication flow
method. The added test case HudsonPrivateSecurityRealm2SEC1158Test
validates session ID changes after signup, confirming the function
's role in session management.