CVE-2020-12642: XXE vulnerability in Launch import
7.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.51025%
CWE
Published
6/28/2021
Updated
2/1/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.epam.reportportal:service-api | maven | >= 3.1.0, < 4.3.12 | 4.3.12 |
com.epam.reportportal:service-api | maven | >= 5.0.0, < 5.1.1 | 5.1.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from insecure XML parser configuration in JUnit import handling. The fix in commit da4a012 shows security features were added to SAXParserFactory
/XMLReader
in XunitParseJob.java
. The original vulnerable code executed 'SAXParserFactory.newInstance().newSAXParser().parse()'
without disabling external entity resolution, which aligns with CWE-611 (XXE) description. The direct modification of XML parsing logic in this class confirms it as the vulnerable entry point.