CVE-2019-16549: Jenkins Maven Release Plug-in Plugin XXE vulnerability
7.1
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.25643%
CWE
Published
5/24/2022
Updated
12/6/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:L
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins.m2release:m2release | maven | <= 0.16.1 | 0.16.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
- The XXE vulnerability stems from StageClient.getDocument() using DocumentBuilderFactory without disabling DTDs/external entities. The commit diff shows replacement with secure XMLUtils.parse.
- The CSRF vulnerability was in doUrlCheck() which originally lacked @POST annotation, allowing GET-based CSRF attacks. The commit adds @POST requirement. Both vulnerabilities are directly addressed in the provided patch diff and match the CVE description's technical details.