CVE-2018-11758: XML External Entity Reference in Apache Cayenne
8.1
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.57311%
CWE
Published
5/14/2022
Updated
2/2/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.cayenne:cayenne-parent | maven | < 3.1.3 | 3.1.3 |
org.apache.cayenne:cayenne-parent | maven | >= 4.0, < 4.1 | 4.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The patches explicitly modify XML parser creation points to disable XXE features. The vulnerable versions lacked these security settings in three key locations: 1) SAXParser
creation in Util.java
, 2) DocumentBuilder
creation in XMLUtil.java
(core XML handling), and 3) DOM
parsing in Project2Case.java
(project file loading). All three would appear in stack traces when processing malicious XML input. Medium confidence for Project2Case.toDOMTree
as it's test code, but the identical patch pattern suggests it was used in production flows.