CVE-2016-15026: dd-plist XML External Entitly vulnerability
7.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.1972%
CWE
Published
2/20/2023
Updated
10/20/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.googlecode.plist:dd-plist | maven | < 1.18 | 1.18 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from insecure XML parser configuration in pre-1.18 versions. Key indicators:
- The commit patching CVE-2016-15026 shows significant changes to XMLPropertyListParser.java's DocumentBuilderFactory configuration
- Pre-patch code lacked features like setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false)
- The original EntityResolver only handled Apple DTDs but didn't block other external entities
- All XML parsing flows went through getDocBuilder(), making it the central vulnerable component
- The NVD description explicitly cites improper restriction of XML external entity references as the root cause