CVE-2019-10354: Missing Authorization in Jenkins
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.44776%
CWE
Published
5/24/2022
Updated
12/22/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.main:jenkins-core | maven | <= 2.176.1 | 2.176.2 |
org.jenkins-ci.main:jenkins-core | maven | >= 2.177, <= 2.185 | 2.186 |
org.kohsuke.stapler:stapler-parent | maven | < 1.257.1 | 1.257.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from Stapler's view dispatching mechanism not performing authorization checks. The fix introduced DispatchValidator
integration in Facet
's dispatcher creation (via createValidatingDispatcher
) and added validation in ScriptRequestDispatcher
. The original vulnerable functions were the view dispatching entry points that lacked these checks, particularly in Jelly/Groovy
view rendering paths. The commits show these components were modified to add security validation, confirming they were the missing authorization points.