Next.js has Unbounded Memory Consumption via PPR Resume Endpoint

Description

A denial of service vulnerability exists in Next.js versions with Partial Prerendering (PPR) enabled when running in minimal mode. The PPR resume endpoint accepts unauthenticated POST requests with the Next-Resume: 1 header and processes attacker-controlled postponed state data. Two closely related vulnerabilities allow an attacker to crash the server process through memory exhaustion:

  1. Unbounded request body buffering: The server buffers the entire POST request body into memory using Buffer.concat() without enforcing any size limit, allowing arbitrarily large payloads to exhaust available memory.

  2. Unbounded decompression (zipbomb): The resume data cache is decompressed using inflateSync() without limiting the decompressed output size. A small compressed payload can expand to hundreds of megabytes or gigabytes, causing memory exhaustion.

Both attack vectors result in a fatal V8 out-of-memory error (FATAL ERROR: Reached heap limit Allocation failed - JavaScript heap out of memory) causing the Node.js process to terminate. The zipbomb variant is particularly dangerous as it can bypass reverse proxy request size limits while still causing large memory allocation on the server.

To be affected, an application must run with experimental.ppr: true or cacheComponents: true configured along with the NEXT_PRIVATE_MINIMAL_MODE=1 environment variable.

Strongly consider upgrading to 15.6.0-canary.61 or 16.1.5 to reduce risk and prevent availability issues in Next applications.

Basic information

Type
reviewed
Severity
medium
Advisory on GitHub
Open advisory ↗
Repository advisory
Open repository advisory ↗
Source code
Browse source ↗
Published (advisory)
2026-01-28 15:20:55 UTC
Updated
2026-04-08 20:56:19 UTC
GitHub reviewed
2026-01-28 15:20:55 UTC
NVD published
2026-01-26

EPSS Score

Score Percentile
0.09% 25.49%

CVSS Scores

Base score Version Severity Vector
5.9 3.1
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H Click to expand
Attack vector (AV:N)
Could be attacked over the internet or any normal routed network—not just someone sitting at the machine.
Attack complexity (AC:H)
Even with access, the exploit needs extra luck, timing, or a fussy environment to actually work.
Privileges required (PR:N)
No account or special rights needed—anonymous or random user is enough.
User interaction (UI:N)
Nobody has to click “OK” or open a trap file; it can work without a victim helping.
Scope (S:U)
Damage stays in the same “trust bubble” as the broken component—no big spill into unrelated systems.
Confidentiality (C:N)
Doesn’t really leak secrets in a meaningful way.
Integrity (I:N)
Data isn’t meaningfully altered or forged.
Availability (A:H)
Could take the service down hard or make it unusable for people who depend on it.

Identifiers

CWEs

CWE id Name
CWE-400 Uncontrolled Resource Consumption
CWE-409 Improper Handling of Highly Compressed Data (Data Amplification)
CWE-770 Allocation of Resources Without Limits or Throttling

Credits

  • cylewaitforit (analyst)
  • jesvinjames (analyst)

Affected packages (16)

Vulnerable version ranges and first patched releases as published by GitHub.

Ecosystem Package Vulnerable range First patched Vulnerable functions
npm next >= 16.0.0-beta.0, < 16.1.5 16.1.5
npm next >= 15.6.0-canary.0, < 15.6.0-canary.61 15.6.0-canary.61
npm next >= 15.0.0-canary.0, <= 15.0.0-canary.205
npm next >= 15.0.1-canary.0, <= 15.0.1-canary.3
npm next >= 15.0.2-canary.0, <= 15.0.2-canary.11
npm next >= 15.0.3-canary.0, <= 15.0.3-canary.9
npm next >= 15.0.4-canary.0, <= 15.0.4-canary.52
npm next >= 15.1.1-canary.0, <= 15.1.1-canary.27
npm next >= 15.2.0-canary.0, <= 15.2.0-canary.77
npm next >= 15.2.1-canary.0, <= 15.2.1-canary.6
npm next >= 15.2.2-canary.0, <= 15.2.2-canary.7
npm next >= 15.3.0-canary.0, <= 15.3.0-canary.46
npm next >= 15.3.1-canary.0, <= 15.3.1-canary.15
npm next >= 15.4.0-canary.0, <= 15.4.0-canary.130
npm next >= 15.4.2-canary.0, <= 15.4.2-canary.56
npm next >= 15.5.1-canary.0, <= 15.5.1-canary.39

References

cvelogic Threat Intelligence