CVE-2018-12545: Uncontrolled Resource Consumption in org.eclipse.jetty:jetty-server
7.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.89079%
CWE
Published
3/28/2019
Updated
1/11/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.eclipse.jetty:jetty-server | maven | >= 9.4.0, <= 9.4.12.RC2 | 9.4.12.v20180830 |
org.eclipse.jetty:jetty-server | maven | >= 9.3.0, <= 9.3.24.v20180605 | 9.3.25.v20180904 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from Jetty's HTTP/2 implementation processing SETTINGS frames without proper limits. Key functions identified:
- HTTP2Session.onSettings() - Entry point for handling SETTINGS frames
- Parser.parseBody() - Low-level frame parsing that could process oversized/malformed payloads
- HTTP2Settings.putSetting() - Directly modified in patches to add MAX_SETTINGS_KEYS check Oracle's advisory links the fix to Jetty updates, and HTTP2 protocol handling is the primary attack surface. The functions shown are core to SETTINGS frame processing and were explicitly patched to add resource limits.