CVE-2026-59246 Details
Description
Allocation of resources without limits vulnerability in elixir-mint mint allows a remote HTTP/2 server to exhaust memory on the client host and cause a denial of service. The Mint.HTTP2.handle_continuation/3 function in lib/mint/http2.ex accumulates the header-block fragment carried by each HTTP/2 CONTINUATION frame into a growing conn.headers_being_processed nesting, one level deeper per frame, and only releases it when a frame with the END_HEADERS flag arrives. The only guard on this accumulator is Mint.HTTP2.assert_header_block_within_max_size/2, which sums the byte size of the fragments received so far. Because a CONTINUATION frame is permitted by the protocol to carry a zero-length payload, an unbounded chain of zero-length CONTINUATION frames adds no bytes to the running total, never trips the size cap, and never emits END_HEADERS, yet each frame still nests the accumulator one level deeper. A malicious HTTP/2 server (reachable directly, via an attacker-controlled redirect, via SSRF, or via a man-in-the-middle) can open a stream by sending a HEADERS frame without END_HEADERS and then stream zero-length CONTINUATION frames indefinitely. Client memory grows one cons cell per frame received; sustained bandwidth from the peer drives the BEAM node running the Mint client to memory exhaustion and eventual out-of-memory termination. This issue affects mint: from 0.1.0 before 1.9.2.
A vulnerability in the Elixir Mint HTTP client library, specifically in versions 0.1.0 prior to 1.9.2, allows a remote HTTP/2 server to cause a denial-of-service condition by exhausting the client's memory. This issue arises in the Mint.HTTP2.handle_continuation/3 function, which processes HTTP/2 CONTINUATION frames. The vulnerability occurs because the HTTP/2 protocol permits CONTINUATION frames to carry zero-length payloads. A malicious server can exploit this by sending an endless stream of such frames, bypassing Mint's header-block byte-size limit and leading to memory exhaustion on the client side.
Users can upgrade to Mint version 1.9.2 or later to address this vulnerability.
Metrics
CVSS 4.0 Severity and Vector Strings:
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
Volerion
Assessed Jul 14, 2026CISA-ADP
Assessed Jul 14, 2026References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://github.com/elixir-mint/mint/security/advisories/GHSA-8pf6-g464-h6h9 | CISA-ADP | AdvisoryVendor |
| https://cna.erlef.org/cves/CVE-2026-59246.html | EEF | AdvisoryVendor |
| https://github.com/elixir-mint/mint/commit/5779de1666344b32aefc4354184ea07f902f73ce | EEF | Source CodeVendor |
| https://github.com/elixir-mint/mint/security/advisories/GHSA-8pf6-g464-h6h9 | EEF | AdvisoryVendor |
| https://osv.dev/vulnerability/EEF-CVE-2026-59246 | EEF | AdvisoryVendor |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-770 | Allocation of Resources Without Limits or Throttling | EEF |
Affected Products
| Product | Versions |
|---|---|
| elixir-mint Mint | >= 0.1.0, < 1.9.2 (semver) |
CPE
Remediation
| |
Change History
2 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jul 14, 2026 | CVE Modified | CISA-ADP |
| Jul 14, 2026 | New CVE Received | EEF |
Volerion