CVE-2019-10437: Jenkins CRX Content Package Deployer Plugin subject to Cross-Site Request Forgery
8.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.27186%
CWE
Published
5/24/2022
Updated
10/26/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:crx-content-package-deployer | maven | < 1.9 | 1.9 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from form validation methods in multiple builder classes that did not enforce POST requests (via @RequirePOST) or validate
user permissions (Item.CONFIGURE
). The GitHub advisory explicitly states these methods were vulnerable to CSRF and missing permission checks. The commit 1313c422170a064dab0f9359324ff27e30a9f4a5 adds both @RequirePOST annotations and checkPermission
calls to these methods, confirming their pre-patch vulnerability. The high confidence comes from direct correlation between advisory descriptions, CWE-352, and the patched code changes.