CVE-2014-0109: Uncontrolled Resource Consumption in Apache CXF
4.3
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.903%
CWE
Published
5/13/2022
Updated
12/21/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
AV:N/AC:M/Au:N/C:N/I:N/A:P
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.apache.cxf:cxf-core | maven | < 2.6.14 | 2.6.14 |
| org.apache.cxf:cxf-core | maven | >= 2.7.0, < 2.7.11 | 2.7.11 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from how CXF handles unexpected text/html content in SOAP responses. The commit 6dd839a modifies StaxInInterceptor.java to add size limits when reading HTML error messages. The original implementation used IOUtils.toString() without sufficient constraints, allowing attackers to trigger memory exhaustion via large payloads. The fix introduces a controlled read loop with a 64KB limit, confirming the vulnerability existed in the unconstrained input handling of this function.