CVE-2020-2178: XXE vulnerability in Jenkins Parasoft Findings Plugin
7.1
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.31962%
CWE
Published
5/24/2022
Updated
2/1/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:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.parasoft:parasoft-findings | maven | <= 10.4.3 | 10.4.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from insecure XML parser configuration. The advisory explicitly states the parser wasn't properly secured against XXE. In Java XML processing, this typically occurs when DocumentBuilderFactory is created without setting security features like FEATURE_SECURE_PROCESSING or explicitly disabling DTD/external entities. The parse method handling XML input would be the logical location for this vulnerability, as the patched version (10.4.4) specifically mentions adding external entity resolution disabling - a standard XXE mitigation for Java XML parsers.