CVE-2011-4461: Improper Input Validation in Jetty
5.3
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.85989%
CWE
Published
5/14/2022
Updated
4/19/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.eclipse.jetty:jetty-server | maven | <= 8.1.0.RC2 | 8.1.0.RC4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from Jetty's form parameter processing. The commit 085c79d introduced 'maxFormKeys' checks in Request.java
and UrlEncoded.java
, indicating these functions previously lacked parameter count limits. UrlEncoded.decodeTo()
populated a MultiMap without key restrictions, allowing attackers to trigger hash collisions. Request.extractParameters()
called this method without enforcing limits, making both functions critical points of vulnerability. The patch explicitly adds these checks, confirming their role in the exploit.