View all vulnerabilities

CVE-2023-40167

Jetty accepts "+" prefixed value in Content-Length

### ImpactJetty accepts the '+' character proceeding the content-length value in a HTTP/1 header field. This is more permissive than allowed by the RFC and other servers routinely reject such requests with 400 responses. There is no known exploit scenario, but it is conceivable that request smuggling could result if jetty is used in combination with a server that does not close the connection after sending such a 400 response.### WorkaroundsThere is no workaround as there is no known exploit scenario. ### Original Report [RFC 9110 Secion 8.6](https://www.rfc-editor.org/rfc/rfc9110#section-8.6) defined the value of Content-Length header should be a string of 0-9 digits. However we found that Jetty accepts "+" prefixed Content-Length, which could lead to potential HTTP request smuggling.Payload:``` POST / HTTP/1.1 Host: a.com Content-Length: +16 Connection: close ​ 0123456789abcdef```When sending this payload to Jetty, it can successfully parse and identify the length.When sending this payload to NGINX, Apache HTTPd or other HTTP servers/parsers, they will return 400 bad request.This behavior can lead to HTTP request smuggling and can be leveraged to bypass WAF or IDS.

Patch Available

Fix available through Seal Security. No upgrade required, protect your application instantly.

Fix without upgrading
Vulnerability Details
Score
5.3
Score Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
Affected Versions
org.eclipse.jetty:jetty-http >= 9.0.0 < 9.4.52; org.eclipse.jetty:jetty-http >= 10.0.0 < 10.0.16; org.eclipse.jetty:jetty-http >= 11.0.0 < 11.0.16; org.eclipse.jetty:jetty-http >= 12.0.0 < 12.0.1
Severity
Medium
Ecosystem
Publish Date
September 14, 2023
Modified Date
February 16, 2024