Описание
Lenient Parsing of Content-Length Header When Prefixed with Plus Sign
Summary
hyper's HTTP/1 server code had a flaw that incorrectly parses and accepts requests with a Content-Length header with a prefixed plus sign, when it should have been rejected as illegal. This combined with an upstream HTTP proxy that doesn't parse such Content-Length headers, but forwards them, can result in "request smuggling" or "desync attacks".
Vulnerability
The flaw exists in all prior versions of hyper, if built with rustc v1.5.0 or newer.
Example:
This request gets accepted and hyper reads the body as abc. The request should be rejected, according to RFC 7230, since the ABNF for Content-Length only allows for DIGITs. This is due to using the FromStr implementation for u64 in the standard library. By differing from the spec, it is possible to send requests like these to endpoints that have different HTTP implementations, with different interpretations of the payload semantics, and cause "desync attacks".
In this particular case, an upstream proxy would need to error when parsing the Content-Length, but not reject the request (swallowing its own error), and forwarding the request as-is with the Content-Length still included. Then the upstream proxy and hyper would disagree on the length of the request body. The combination of these factors would be extremely rare.
Read more about desync attacks: https://portswigger.net/research/http-desync-attacks-request-smuggling-reborn
Impact
To determine if vulnerable, all these things must be true:
- Using hyper as an HTTP server. While the lenient decoder also exists in the client, a vulnerability does not exist around responses.
- Using HTTP/1. The HTTP/2 code uses a stricter parser.
- Using a vulnerable HTTP proxy upstream to hyper. If an upstream proxy correctly rejects the illegal
Content-Lengthheader, OR can parse the length with the plus sign, the desync attack cannot succeed.
Patches
We have released the following patch versions:
- v0.14.10 (to be released when this advisor is published)
Workarounds
Besides upgrading hyper, you can take the following options:
- Reject requests manually that contain a plus sign prefix in the
Content-Lengthheader. - Ensure any upstream proxy handles
Content-Lengthheaders with a plus sign prefix.
Credits
This issue was initially reported by Mattias Grenfeldt and Asta Olofsson.
Ссылки
- https://github.com/hyperium/hyper/security/advisories/GHSA-f3pg-qwvg-p99c
- https://nvd.nist.gov/vuln/detail/CVE-2021-32715
- https://github.com/rust-lang/rust/pull/28826/commits/123a83326fb95366e94a3be1a74775df4db97739
- https://github.com/hyperium/hyper/commit/1fb719e0b61a4f3d911562a436a2ff05fd7cb759
- https://rustsec.org/advisories/RUSTSEC-2021-0078.html
Пакеты
hyper
< 0.14.10
0.14.10
Связанные уязвимости
hyper is an HTTP library for rust. hyper's HTTP/1 server code had a flaw that incorrectly parses and accepts requests with a `Content-Length` header with a prefixed plus sign, when it should have been rejected as illegal. This combined with an upstream HTTP proxy that doesn't parse such `Content-Length` headers, but forwards them, can result in "request smuggling" or "desync attacks". The flaw exists in all prior versions of hyper prior to 0.14.10, if built with `rustc` v1.5.0 or newer. The vulnerability is patched in hyper version 0.14.10. Two workarounds exist: One may reject requests manually that contain a plus sign prefix in the `Content-Length` header or ensure any upstream proxy handles `Content-Length` headers with a plus sign prefix.
hyper is an HTTP library for rust. hyper's HTTP/1 server code had a flaw that incorrectly parses and accepts requests with a `Content-Length` header with a prefixed plus sign, when it should have been rejected as illegal. This combined with an upstream HTTP proxy that doesn't parse such `Content-Length` headers, but forwards them, can result in "request smuggling" or "desync attacks". The flaw exists in all prior versions of hyper prior to 0.14.10, if built with `rustc` v1.5.0 or newer. The vulnerability is patched in hyper version 0.14.10. Two workarounds exist: One may reject requests manually that contain a plus sign prefix in the `Content-Length` header or ensure any upstream proxy handles `Content-Length` headers with a plus sign prefix.
hyper is an HTTP library for rust. hyper's HTTP/1 server code had a fl ...
Уязвимость HTTP-библиотеки для Rust Hyper, связанная с недостатками обработки HTTP-запросов, позволяющая нарушителю оказать воздействие на целостность данных