CVE-2019-1003017: Jenkins Job Import Plugin CSRF vulnerability
5.3
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.2458%
CWE
Published
5/13/2022
Updated
1/9/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:job-import-plugin | maven | <= 3.0 | 3.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The commit diff shows these methods were modified to add @POST annotations and permission checks (Jenkins.get().checkPermission
). The vulnerability description explicitly states the lack of POST enforcement led to CSRF. The CWE-352 mapping confirms this is a CSRF flaw. The removed fetchUrl2
in URLUtils.java
appears unrelated to the CSRF vector (likely addressing a different vulnerability like XXE).