highCVSS 7.5Vulnerability

CVE-2026-88975

### Summary An unauthenticated peer can make Ember's HTTP/2 read loop hold 16 MiB of a single frame in memory on a connection where Ember advertised a 16 KiB limit. The declared length is readable from the frame's first 9 bytes, but it is not compared against SETTINGS_MAX_FRAME_SIZE until the whole payload has been read into a contiguous buffer. That is 1024x amplification per connection, bounded by the protocol's 24-bit length field rather than by any setting, and at the default maxConnections of 1024 it puts about 16 GiB of heap in reach. ### Details H2Frame.RawFrame.fromByteVector (ember-core/.../h2/H2Frame.scala:66-69) reads the length, then refuses to produce a frame until 9 + length bytes are present: ``` val length = (bv(2) & 0xff) | ((bv(1) & 0xff) << 8) | ((bv(0) & 0xff) << 16) if (bv.length >= 9 + length) { ``` readNextFrame in H2Connection.readLoop (H2Connection.scala:246-266) reads that None as "need more" and concatenates further socket reads into one accumulator until it is satisfied. The only check of an inbound frame against the connection's own SETTINGS_MAX_FRAME_SIZE is in processFrame at H2Connection.scala:534, which cannot run until the frame is assembled. So the value that condemns the frame sits in the accumulator from byte 9 onward and is never consulted. A peer that declares 16777215 and dribbles the payload without finishing gets the same buffering with no reaction at all, since an incomplete frame never reaches processFrame. RFC 9113 4.2 requires treating an oversized frame as a connection error and explicitly permits responding without reading the rest of the payload. ### Impact Uncontrolled resource consumption leading to unauthenticated remote denial of service by memory exhaustion. - ember-server built .withHttp2: any peer able to open an HTTP/2 connection can trigger it. No authentication and no valid request, since the frame is rejected before it is associated with a stream, and the incomplete variant is never rejected. - ember

Properties

ghsa_id
GHSA-gq9p-f254-h286
severity
high
summary
Http4s: Ember HTTP/2 buffers a frame's declared payload before checking SETTINGS_MAX_FRAME_SIZE
cvss_score
7.5
cve_id
CVE-2026-88975
cvss_vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
signal_observed_at
2026-09-15T21:13:07+00:00
is_ghsa_only
false
ghsa_published
2026-09-15T20:01:22Z
source_url
https://github.com/advisories/GHSA-gq9p-f254-h286
ghsa_updated
2026-09-15T20:01:24Z

Related Entities (8)

VULNERABLE_TO (3)

[Software]maven/org.http4s:http4s-ember-core_2.12
[Software]maven/org.http4s:http4s-ember-core_2.13
[Software]maven/org.http4s:http4s-ember-core_3

AFFECTS (3)

[Software]maven/org.http4s:http4s-ember-core_2.13
[Software]maven/org.http4s:http4s-ember-core_2.12
[Software]maven/org.http4s:http4s-ember-core_3

HAS_WEAKNESS (1)

[Weakness]Uncontrolled Resource Consumption

REPORTED_BY (1)

[Source]GitHub Advisory Database

Explore deeper with Ninja Signal's threat intelligence graph

CVE-2026-88975 (CVSS 7.5) — Ninja Signal Threat Intelligence | Ninja Signal