CVE-2026-58229: Unbounded HTTP/1 response-header and chunked-trailer accumulation in Mint causes memory-exhaustion DoS
Allocation of resources without limits vulnerability in elixir-mint mint allows a remote HTTP server to exhaust memory on the client host and cause a denial of service.
The Mint.HTTP1.decodeheaders/5 and Mint.HTTP1.decodetrailerheaders/4 functions in lib/mint/http1.ex accumulate every parsed response header and chunked-trailer field into a per-request list that persists across incoming TCP segments as request.headersbuffer, and only clear it when the terminating blank line is received. The section has no cap on the number of headers or on total bytes, and the underlying :erlang.decodepacket(:httphbin, binary, []) parser is invoked with an empty option list so its per-line and per-packet size limits also default to unlimited.
A malicious HTTP server (reachable directly, via an attacker-controlled redirect, via SSRF, or via a man-in-the-middle) can stream complete header lines (or, after a chunked body, complete trailer lines) indefinitely without ever emitting the terminating blank line. The connection state grows without bound until the BEAM node is killed by the operating system's out-of-memory handler, taking down the entire application that uses Mint as an HTTP client.
This issue affects mint: from 0.1.0 before 1.9.2.
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2026-58229?
CVE-2026-58229 has a severity rating of high with a CVSS score of 8.2.
What is the impact of CVE-2026-58229?
CVE-2026-58229 allows a remote HTTP server to exhaust memory on the client host, potentially leading to a denial of service.
How do I fix CVE-2026-58229?
To mitigate CVE-2026-58229, ensure you are using the latest version of elixir-mint that addresses this vulnerability.
What software is affected by CVE-2026-58229?
CVE-2026-58229 affects the elixir-mint library, specifically its HTTP/1 components.
When was CVE-2026-58229 published?
CVE-2026-58229 was published on July 14, 2026.