CVE-2018-20059: Improper Restriction of XML External Entity Reference in pippo-core
9.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.60135%
CWE
Published
12/19/2018
Updated
3/4/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
ro.pippo:pippo-core | maven | < 1.12.0 | 1.12.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unsafe XML parsing in JaxbEngine's deserialization method. The pre-patch code directly used JAXB's Unmarshaller on a StringReader without security configurations. The critical fix introduced XMLInputFactory with IS_SUPPORTING_EXTERNAL_ENTITIES=false to block XXE, confirming the vulnerability existed in the original fromString method. The method's responsibility for XML deserialization and the patch's focus on this function directly correlate to the XXE vulnerability.