CVE-2018-1000015: Incorrect permission checks in Pipeline: Nodes and Processes plugin
4.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.07957%
CWE
Published
5/13/2022
Updated
1/30/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins.workflow:workflow-durable-task-step | maven | <= 2.17 | 2.18 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing Computer/BUILD permission checks during node step execution. The NodeStepExecution.run()
method would be responsible for initiating agent allocation and execution. The security advisory explicitly states the permission check was added in 2.18, indicating the run()
method previously lacked this authorization check. This matches the CWE-862 pattern of missing authorization checks in security-sensitive operations.