<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Elixir Mint - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/vendors/elixir-mint/</link><description>Trending threats, MITRE ATT&amp;CK coverage, and detection metadata. Fed continuously.</description><generator>Hugo</generator><language>en</language><managingEditor>hello@craftedsignal.io</managingEditor><webMaster>hello@craftedsignal.io</webMaster><lastBuildDate>Thu, 09 Jul 2026 23:21:55 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/vendors/elixir-mint/feed.xml" rel="self" type="application/rss+xml"/><item><title>Mint HTTP/2 Client Vulnerable to Unbounded CONTINUATION Frame Accumulation (CVE-2026-49754)</title><link>https://feed.craftedsignal.io/briefs/2026-07-mint-http2-continuation-flood/</link><pubDate>Thu, 09 Jul 2026 23:21:55 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-07-mint-http2-continuation-flood/</guid><description>A malicious or compromised HTTP/2 server can exploit CVE-2026-49754 in the Elixir Mint HTTP/2 client by sending an endless chain of CONTINUATION frames without an END_HEADERS flag, leading to unbounded memory accumulation, process exhaustion, and remote unauthenticated denial-of-service.</description><content:encoded><![CDATA[<p>The Elixir Mint HTTP/2 client is vulnerable to a denial-of-service attack (CVE-2026-49754) due to an unbounded accumulation of <code>CONTINUATION</code> header-block fragments. This vulnerability, disclosed by GHSA, allows a malicious or compromised HTTP/2 server to exhaust the client's memory. By streaming an endless sequence of <code>CONTINUATION</code> frames following an initial <code>HEADERS</code> frame that lacks the <code>END_HEADERS</code> flag, an attacker can drive the client's process memory to arbitrary size. This flaw affects Mint versions prior to 1.9.0 and requires no specific client-side configuration, making the default Mint client susceptible. A single connection to an attacker-controlled HTTP/2 endpoint is sufficient to trigger memory exhaustion and ultimately crash the BEAM process, resulting in a remote, unauthenticated denial-of-service.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>A victim application using the Elixir Mint HTTP/2 client establishes an HTTP/2 connection to a server.</li>
<li>The client sends an HTTP/2 <code>HEADERS</code> frame as part of a request to the server.</li>
<li>An attacker-controlled or compromised HTTP/2 server receives the client's request.</li>
<li>The malicious server responds to the client's request by sending a <code>HEADERS</code> frame on stream 1, deliberately setting <code>flags = 0</code> (omitting <code>END_HEADERS</code> and <code>END_STREAM</code>) and including an empty header-block fragment.</li>
<li>The malicious server then continuously streams <code>CONTINUATION</code> frames on stream 1, each with <code>flags = 0</code> and a payload up to the peer-advertised <code>SETTINGS_MAX_FRAME_SIZE</code>, never setting <code>END_HEADERS</code>.</li>
<li>The Mint client's HTTP/2 receive path, specifically the <code>'Elixir.Mint.HTTP2':handle_continuation/3</code> function, continuously appends these <code>CONTINUATION</code> fragments to the <code>conn.headers_being_processed</code> buffer.</li>
<li>Due to the absence of per-stream size caps or <code>CONTINUATION</code> frame-count caps, the client's process memory grows linearly and uncontrollably with the incoming flood of <code>CONTINUATION</code> frames.</li>
<li>The unbounded memory growth eventually leads to memory exhaustion and an Out-Of-Memory (OOM) error, causing the entire Elixir BEAM process running the Mint client to crash, resulting in a denial-of-service.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>The successful exploitation of CVE-2026-49754 results in a remote, unauthenticated denial-of-service against any application utilizing the Elixir Mint HTTP/2 client to connect to an untrusted or attacker-influenced server. A single connection is sufficient for an attacker to drive the client's memory to an arbitrary size, leading to the crash of the underlying BEAM process. This can incapacitate critical services or applications relying on Mint for HTTP/2 communication, causing significant operational disruption and data unavailability. The default Mint configuration is vulnerable, requiring no specific client-side opt-in for exploitation. The vulnerability has been scored CVSS v4.0 8.2 (HIGH).</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade the Elixir Mint library to version 1.9.0 or later to patch CVE-2026-49754.</li>
<li>If immediate patching is not possible, restrict Mint to HTTP/1 for connections to untrusted servers by passing <code>protocols: [:http1]</code> to <code>'Elixir.Mint.HTTP':connect/4</code> to avoid the vulnerable HTTP/2 receive path, as outlined in the workarounds.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>http/2</category><category>denial-of-service</category><category>vulnerability</category><category>elixir</category><category>mint</category></item><item><title>Mint HTTP/2 Client Unbounded Stream Map Growth Denial-of-Service (CVE-2026-48862)</title><link>https://feed.craftedsignal.io/briefs/2026-07-mint-dos/</link><pubDate>Thu, 09 Jul 2026 23:21:09 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-07-mint-dos/</guid><description>A malicious or compromised HTTP/2 server can exploit CVE-2026-48862 in Mint HTTP/2 clients by flooding them with PUSH_PROMISE frames and withholding corresponding HEADERS, leading to unbounded memory consumption and denial-of-service.</description><content:encoded><![CDATA[<p>Elixir-Mint HTTP/2 client versions 0.2.0 through 1.8.x are vulnerable to a remote, unauthenticated denial-of-service attack, identified as CVE-2026-48862. A hostile or compromised HTTP/2 server can leverage this vulnerability by sending an excessive number of <code>PUSH_PROMISE</code> frames without following up with the matching <code>HEADERS</code>. Mint's client, by default, accepts <code>PUSH_PROMISE</code> frames and inserts entries into an internal connection stream map without properly enforcing the <code>max_concurrent_streams</code> limit, causing the map to grow indefinitely. This unbounded growth leads to linear memory consumption within the client process, eventually resulting in an out-of-memory (OOM) crash and denying service. This vulnerability affects any application using Mint as an HTTP/2 client, especially those connecting to untrusted or attacker-influenced servers, such as web backends, webhook delivery systems, and proxy components.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>A malicious or compromised HTTP/2 server establishes a long-lived HTTP/2 connection with a vulnerable Mint client.</li>
<li>The Mint client sends its initial request <code>HEADERS</code> for a specific odd stream ID.</li>
<li>The malicious server captures the client's request stream ID.</li>
<li>The malicious server then sends a rapid flood of <code>PUSH_PROMISE</code> frames, each associated with the client's request stream ID.</li>
<li>Each <code>PUSH_PROMISE</code> frame specifies a new, unique even stream ID and carries a minimal HPACK-encoded header block.</li>
<li>The Mint client processes each <code>PUSH_PROMISE</code> frame, adding a <code>:reserved_remote</code> entry into its <code>conn.streams</code> map for every promised stream ID without consulting <code>max_concurrent_streams</code>.</li>
<li>The malicious server intentionally withholds the corresponding response <code>HEADERS</code> for all the promised stream IDs.</li>
<li>As the <code>conn.streams</code> map grows linearly with each unfulfilled <code>PUSH_PROMISE</code> frame, the Mint client's process consumes an increasing amount of memory until it crashes due to an Out-Of-Memory (OOM) error.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of CVE-2026-48862 results in a remote, unauthenticated denial-of-service against any process utilizing Mint as an HTTP/2 client when connecting to an untrusted or attacker-controlled server. Since HTTP/2 server push is enabled by default in Mint, no specific application opt-in is required for the vulnerability to be exploitable. Affected systems include outbound HTTP/2 clients in web backends, webhook delivery services, data scrapers, federated components, and proxy services that interact with external HTTP/2 origins. An attacker can crash the client process, rendering the service unavailable and potentially requiring manual intervention to restore.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade all affected Mint HTTP/2 clients to version 1.9.0 or newer immediately to mitigate CVE-2026-48862.</li>
<li>For systems that cannot be immediately upgraded, disable HTTP/2 server push on connections to untrusted servers by explicitly passing <code>client_settings: [enable_push: false]</code> to the <code>'Elixir.Mint.HTTP':connect/4</code> function as a workaround for CVE-2026-48862.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>denial-of-service</category><category>http/2</category><category>elixir</category><category>client-side</category><category>vulnerability</category></item></channel></rss>