CVE-2016-15011: dssp vulnerable to Improper Restriction of XML External Entity Reference
9.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.26569%
CWE
Published
1/6/2023
Updated
10/20/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:H/A:H
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| be.e_contract.dssp:dssp-client | maven | < 1.3.2 | 1.3.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from insecure XML parsing in checkSignResponse. The pre-patch code:
- Used JAXB unmarshalling directly on raw input (new ByteArrayInputStream)
- Later created a DocumentBuilder without disabling DTDs
- The patch explicitly adds 'disallow-doctype-decl' feature to DocumentBuilderFactory and changes parsing order to use the secured DOM document for JAXB unmarshalling instead of raw input. The CVE description explicitly names checkSignResponse as the affected function, and the commit diff shows insecure XML handling patterns were present in this method prior to the fix.