Advisory Database
  • Advisories
  • Dependency Scanning
  1. maven
  2. ›
  3. org.http4s/http4s-ember-core_2.13
  4. ›
  5. CVE-2026-69205

CVE-2026-69205: Http4s Ember Transfer-Encoding value parsing (TE.CL / TE.0 request smuggling)

September 15, 2026

Ember’s HTTP/1.1 header parser matches the Transfer-Encoding header value with a case-sensitive substring test (hValue.contains("chunked")). RFC 9112 §7 requires transfer-coding names to be compared case-insensitively. A request carrying Transfer-Encoding: Chunked (capital C) is therefore not recognised as chunked, and Ember falls back to framing by Content-Length (or zero if absent) while a compliant intermediary frames the same bytes by chunked encoding. The two parsers then disagree on where the request body ends, enabling HTTP request smuggling (TE.CL / TE.0).

The same line of code admits two further variants:

  • The substring test misfires on Transfer-Encoding: notchunked (an inverse desync — Ember treats it as chunked while a compliant intermediary rejects the unknown coding).
  • Header field bytes are decoded with the platform-default charset. Under UTF-8 the wire bytes E2 84 AA decode to U+212A KELVIN SIGN, which String.equalsIgnoreCase Unicode-case-folds to k, so Transfer-Encoding: chun<U+212A>ed matches chunked once the comparison is made case-insensitive without also pinning the decode to ISO-8859-1.

References

  • github.com/advisories/GHSA-9998-894r-fwvr
  • github.com/http4s/http4s/commit/5e88b2e7b4e6ea2f0c61040a4bc9de0d73e51217
  • github.com/http4s/http4s/releases/tag/v0.23.35
  • github.com/http4s/http4s/releases/tag/v1.0.0-M47
  • github.com/http4s/http4s/security/advisories/GHSA-9998-894r-fwvr
  • nvd.nist.gov/vuln/detail/CVE-2026-69205

Code Behaviors & Features

Detect and mitigate CVE-2026-69205 with GitLab Dependency Scanning

Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →

Affected versions

All versions before 0.23.35, all versions starting from 1.0.0-M1 before 1.0.0-M47

Fixed versions

  • 0.23.35
  • 1.0.0-M47

Solution

Upgrade to versions 0.23.35, 1.0.0-M47 or above.

Impact 8.7 HIGH

CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N

Learn more about CVSS

Weakness

  • CWE-444: Inconsistent Interpretation of HTTP Requests ('HTTP Request/Response Smuggling')

Source file

maven/org.http4s/http4s-ember-core_2.13/CVE-2026-69205.yml

Spotted a mistake? Edit the file on GitLab.

  • Site Repo
  • About GitLab
  • Terms
  • Privacy Statement
  • Contact

Page generated Tue, 22 Sep 2026 12:21:11 +0000.