Описание
Response Splitting from unsanitized headers
Impact
http4s is vulnerable to response-splitting or request-splitting attacks when untrusted user input is used to create any of the following fields:
- Header names (
Header.nameå - Header values (
Header.value) - Status reason phrases (
Status.reason) - URI paths (
Uri.Path) - URI authority registered names (
URI.RegName) (through 0.21)
The following backends render invalid carriage return, newline, or null characters in an unsafe fashion.
| blaze-server | ember-server | blaze-client | ember-client | jetty-client | |
|---|---|---|---|---|---|
| header names | ⚠ | ⚠ | ⚠ | ⚠ | ⚠ |
| header values | ⚠ | ⚠ | ⚠ | ⚠ | |
| status reasons | ⚠ | ⚠ | |||
| URI paths | ⚠ | ⚠ | |||
| URI regnames | ⚠ < 0.22 | ⚠ < 0.22 |
For example, given the following service:
A clean author parameter returns a clean response:
A malicious author parameter allows a user-agent to hijack the response from our server and return different content:
Patches
Versions 0.21.29, 0.22.5, 0.23.4, and 1.0.0-M27 perform the following:
- If a status reasoon phrase is invalid, it is dropped. Rendering is optional per spec.
- If a header name is invalid in a request or response, the header is dropped. There is no way to generically sanitize a header without potentially shadowing a correct one.
- If a header value is invalid in a request or response, it is sanitized by replacing null (
\u0000), carriage return (\r), and newline (\n) with space () characters per spec. - If a URI path or registered name is invalid in a request line, the client raises an
IllegalArgumentException. - If a URI registered name is invalid in a host header, the client raises an
IllegalArgumentException.
Workarounds
http4s services and client applications should sanitize any user input in the aforementioned fields before returning a request or response to the backend. The carriage return, newline, and null characters are the most threatening.
Not all backends were affected: jetty-server, tomcat-server, armeria, and netty on the server; async-http-client, okhttp-client, armeria, and netty as clients.
References
- https://owasp.org/www-community/attacks/HTTP_Response_Splitting
- https://httpwg.org/http-core/draft-ietf-httpbis-semantics-latest.html#fields.values
For more information
If you have any questions or comments about this advisory:
- Open an issue in GitHub
- Contact us via the http4s security policy
Ссылки
- https://github.com/http4s/http4s/security/advisories/GHSA-5vcm-3xc3-w7x3
- https://nvd.nist.gov/vuln/detail/CVE-2021-41084
- https://github.com/http4s/http4s/commit/d02007db1da4f8f3df2dbf11f1db9ac7afc3f9d8
- https://httpwg.org/http-core/draft-ietf-httpbis-semantics-latest.html#fields.values
- https://owasp.org/www-community/attacks/HTTP_Response_Splitting
Пакеты
org.http4s:http4s-client_2.12
<= 0.21.28
0.21.29
org.http4s:http4s-client_2.12
>= 0.22.0, <= 0.22.4
0.22.5
org.http4s:http4s-client_2.12
>= 0.23.0, <= 0.23.3
0.23.4
org.http4s:http4s-client_2.13
<= 0.21.28
0.21.29
org.http4s:http4s-client_2.13
>= 0.22.0, <= 0.22.4
0.22.5
org.http4s:http4s-client_2.13
>= 0.23.0, <= 0.23.3
0.23.4
org.http4s:http4s-client_3
<= 0.21.28
0.21.29
org.http4s:http4s-client_3
>= 0.22.0, <= 0.22.4
0.22.5
org.http4s:http4s-client_3
>= 0.23.0, <= 0.23.3
0.23.4
org.http4s:http4s-server_2.10
<= 0.21.28
Отсутствует
org.http4s:http4s-server_2.11
<= 0.21.28
Отсутствует
org.http4s:http4s-server_2.12
<= 0.21.28
0.21.29
org.http4s:http4s-server_2.12
>= 0.22.0, <= 0.22.4
0.22.5
org.http4s:http4s-server_2.12
>= 0.23.0, <= 0.23.3
0.23.4
org.http4s:http4s-server_2.13
<= 0.21.28
0.21.29
org.http4s:http4s-server_2.13
>= 0.22.0, <= 0.22.4
0.22.5
org.http4s:http4s-server_2.13
>= 0.23.0, <= 0.23.3
0.23.4
org.http4s:http4s-server_2.13.0-M5
<= 0.21.28
Отсутствует
org.http4s:http4s-server_3
>= 0.22.0, <= 0.22.4
0.22.5
org.http4s:http4s-server_3
>= 0.23.0, <= 0.23.3
0.23.4
Связанные уязвимости
http4s is an open source scala interface for HTTP. In affected versions http4s is vulnerable to response-splitting or request-splitting attacks when untrusted user input is used to create any of the following fields: Header names (`Header.name`å), Header values (`Header.value`), Status reason phrases (`Status.reason`), URI paths (`Uri.Path`), URI authority registered names (`URI.RegName`) (through 0.21). This issue has been resolved in versions 0.21.30, 0.22.5, 0.23.4, and 1.0.0-M27 perform the following. As a matter of practice http4s services and client applications should sanitize any user input in the aforementioned fields before returning a request or response to the backend. The carriage return, newline, and null characters are the most threatening.