CVE-2017-1000503: Race Condition in Jenkins
8.1
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.85726%
CWE
Published
5/14/2022
Updated
3/4/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.main:jenkins-core | maven | >= 2.81, <= 2.89.1 | 2.89.2 |
org.jenkins-ci.main:jenkins-core | maven | >= 2.90, <= 2.94 | 2.95 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper synchronization in Jenkins' Reactor initialization process. The patch adds attains(COMPLETED)
to two Executable tasks in Jenkins.java
, indicating these anonymous inner class implementations of Executable.run()
were vulnerable. These tasks handled security-critical initialization steps (cleaning obsolete items and finalizing setup) but could execute out of order due to missing synchronization constraints, leading to incomplete security configuration. The direct correlation between the patch and security advisory confirms these functions' role in the race condition.