The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2024-34350

CVE-2024-34350: Vercel Next.js DOS Vulnerability

CVE-2024-34350 is a denial-of-service vulnerability in Vercel Next.js caused by response queue poisoning through crafted HTTP requests. This article covers the technical details, affected versions, and mitigation.

Published: March 11, 2026

CVE-2024-34350 Overview

CVE-2024-34350 is an HTTP Request Smuggling vulnerability in Next.js, Vercel's popular React framework for building web applications. The vulnerability stems from an inconsistent interpretation of crafted HTTP requests, where requests are treated as both a single request and two separate requests by Next.js. This desynchronization leads to response queue poisoning, potentially allowing attackers to manipulate responses served to other users.

Critical Impact

Attackers can exploit this vulnerability to poison the response queue, potentially serving malicious content to legitimate users or bypassing security controls in affected Next.js applications using the rewrites feature.

Affected Products

  • Vercel Next.js versions prior to 13.5.1
  • Next.js applications utilizing the rewrites feature
  • Node.js deployments running vulnerable Next.js versions

Discovery Timeline

  • 2024-05-14 - CVE-2024-34350 published to NVD
  • 2025-09-10 - Last updated in NVD database

Technical Details for CVE-2024-34350

Vulnerability Analysis

This vulnerability is classified under CWE-444 (Inconsistent Interpretation of HTTP Requests), commonly known as HTTP Request Smuggling. The flaw occurs when the Next.js server inconsistently parses HTTP request boundaries, causing a single malicious request to be interpreted as multiple requests. This creates a desynchronization between the front-end and back-end request processing, leading to response queue poisoning.

The attack surface is limited to Next.js applications that implement the rewrites feature in their next.config.js configuration. The rewrites feature allows developers to map incoming request paths to different destination paths, and it is within this request transformation logic that the inconsistent parsing occurs.

Root Cause

The root cause lies in how Next.js handles HTTP request parsing when the rewrites feature is enabled. The framework fails to properly normalize or validate certain crafted HTTP request structures, leading to ambiguous request boundary interpretation. When a specially crafted request is sent, Next.js processes it differently at various stages of the request pipeline, resulting in one request being treated as two separate requests internally.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending a specially crafted HTTP request to a vulnerable Next.js application that uses the rewrites feature. The crafted request exploits the parsing inconsistency to inject a second request into the processing queue. This can result in:

  • Response queue poisoning where subsequent users receive incorrect responses
  • Cache poisoning if caching mechanisms are in place
  • Potential bypass of security controls that rely on proper request isolation
  • Session hijacking or data leakage in multi-tenant environments

The attack leverages the discrepancy in how HTTP request boundaries are interpreted, allowing the attacker to "smuggle" a malicious request that gets processed in the context of another user's session or request.

Detection Methods for CVE-2024-34350

Indicators of Compromise

  • Unusual HTTP response patterns where users receive unexpected content
  • Log entries showing requests with malformed or duplicated headers
  • Discrepancies between access logs showing single requests but application logs showing multiple request processing events
  • Reports of users receiving responses intended for other users

Detection Strategies

  • Monitor for HTTP requests with ambiguous Content-Length or Transfer-Encoding headers
  • Implement request integrity validation at the application layer
  • Deploy Web Application Firewall (WAF) rules to detect HTTP request smuggling patterns
  • Review Next.js server logs for anomalous request parsing behavior

Monitoring Recommendations

  • Enable detailed request logging in Next.js applications to capture full request headers
  • Implement real-time alerting for HTTP desynchronization patterns
  • Monitor for cache poisoning indicators if using CDN or caching layers
  • Conduct regular security audits of applications using the rewrites feature

How to Mitigate CVE-2024-34350

Immediate Actions Required

  • Upgrade Next.js to version 13.5.1 or newer immediately
  • Audit all Next.js applications to identify those using the rewrites feature
  • Review application logs for any signs of exploitation
  • Consider temporarily disabling rewrites if immediate upgrade is not possible

Patch Information

Vercel has resolved this vulnerability in Next.js version 13.5.1 and all subsequent releases. Organizations should upgrade to the latest stable version of Next.js to ensure protection against this and other security issues. The patch addresses the inconsistent HTTP request parsing that enabled the response queue poisoning attack.

For detailed information about the vulnerability and the fix, refer to the GitHub Security Advisory GHSA-77r5-gw3j-2mpf.

Workarounds

  • Temporarily disable the rewrites feature in next.config.js if upgrading is not immediately possible
  • Deploy a reverse proxy or WAF configured to normalize HTTP requests before they reach the Next.js application
  • Implement strict HTTP request validation at the network edge
  • Use HTTP/2 where possible, as it uses binary framing that is less susceptible to smuggling attacks
bash
# Upgrade Next.js to patched version
npm install next@13.5.1

# Or upgrade to latest stable version
npm install next@latest

# Verify installed version
npm list next

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNext.js

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.89%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-444
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-27979: Vercel Next.js DoS Vulnerability

  • CVE-2026-27980: Vercel Next.js DOS Vulnerability

  • CVE-2025-59472: Next.js Memory Exhaustion DoS Vulnerability

  • CVE-2025-59471: Next.js Image Optimizer DoS Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English