Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-2023-46298

CVE-2023-46298: Vercel Next.js DOS Vulnerability

CVE-2023-46298 is a denial of service vulnerability in Vercel Next.js caused by missing cache-control headers that allow CDNs to cache empty responses. This article covers technical details, affected versions, and mitigations.

Published: February 11, 2026

CVE-2023-46298 Overview

CVE-2023-46298 is a Denial of Service vulnerability affecting Vercel Next.js versions before 13.4.20-canary.13. The vulnerability stems from a missing cache-control header in prefetch responses, which can lead to empty responses being cached by Content Delivery Networks (CDNs). When these malformed responses are cached, all users requesting the same URL through the affected CDN will receive the cached empty response, resulting in a widespread denial of service condition.

Critical Impact

This vulnerability can cause complete service disruption for all users accessing affected URLs through a CDN, potentially impacting high-traffic Next.js applications at scale.

Affected Products

  • Vercel Next.js versions prior to 13.4.20-canary.13
  • Vercel Next.js 13.4.20-canary.0 through 13.4.20-canary.12
  • Next.js applications deployed behind CDN infrastructure

Discovery Timeline

  • 2023-10-22 - CVE-2023-46298 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-46298

Vulnerability Analysis

This vulnerability affects Next.js's prefetch functionality, a performance optimization feature that pre-loads page data to improve navigation speed. The core issue lies in how Next.js handles HTTP response headers for prefetch requests. When a prefetch request results in an empty response, the framework fails to include appropriate cache-control headers that would instruct CDNs not to cache these responses.

CDNs typically rely on cache-control headers to determine caching behavior. Without explicit directives indicating that a response should not be cached or has a specific cache duration, CDNs may apply default caching policies. In this case, empty prefetch responses become candidates for caching, and once cached, they poison the CDN's cache for that specific URL.

The impact is significant because CDNs serve cached content to all users within their geographic region or edge location. A single empty prefetch response cached by the CDN can effectively take down that URL for potentially thousands of users until the cache expires or is manually purged.

Root Cause

The root cause is the absence of proper cache-control header implementation in Next.js's prefetch response handling logic. The framework should include headers such as Cache-Control: no-store or Cache-Control: private for empty prefetch responses to prevent CDN caching. This header omission allowed intermediate caching layers to store and serve empty responses as legitimate content.

Attack Vector

The attack can be executed remotely over the network without authentication. An attacker or even normal user activity could trigger the vulnerable condition:

  1. A request triggers a prefetch operation that returns an empty response
  2. The CDN caches this empty response due to missing cache-control headers
  3. Subsequent users requesting the same URL receive the cached empty response
  4. The affected URL becomes inaccessible until the CDN cache is purged or expires

The vulnerability can manifest through normal application usage patterns, making it particularly insidious as it may appear as intermittent service issues rather than a targeted attack.

Detection Methods for CVE-2023-46298

Indicators of Compromise

  • Intermittent blank pages or empty responses for specific URLs across multiple users
  • User reports of pages loading correctly on refresh but failing on subsequent visits
  • CDN logs showing successful cache hits returning empty or zero-byte responses
  • Sudden increase in user complaints about page availability from specific geographic regions

Detection Strategies

  • Monitor CDN cache hit ratios and response sizes for anomalies indicating empty cached responses
  • Implement synthetic monitoring to detect empty responses from CDN edge locations
  • Review Next.js prefetch response headers to verify cache-control directives are present
  • Analyze CDN access logs for patterns of empty responses being served with cache hit indicators

Monitoring Recommendations

  • Configure alerting for response body size anomalies on critical application endpoints
  • Implement CDN cache inspection tools to identify potentially poisoned cache entries
  • Monitor error rates across CDN edge locations for regional outage patterns
  • Set up automated checks to verify proper cache-control headers on prefetch responses

How to Mitigate CVE-2023-46298

Immediate Actions Required

  • Upgrade Next.js to version 13.4.20-canary.13 or later immediately
  • Purge CDN caches for affected Next.js applications after upgrading
  • Review CDN configuration to add protective rules for empty response caching
  • Monitor application endpoints for signs of cache poisoning until upgrade is complete

Patch Information

Vercel has addressed this vulnerability in Next.js version 13.4.20-canary.13 and subsequent releases. The fix adds proper cache-control headers to prefetch responses, preventing CDNs from caching empty responses. Technical details of the fix can be found in the GitHub Pull Request #54732 and the version comparison between canary.12 and canary.13.

For additional context on the issue, see GitHub Issue #45301.

Workarounds

  • Configure CDN rules to prevent caching of empty or zero-byte responses
  • Add custom middleware to inject cache-control headers for prefetch routes
  • Implement CDN cache key normalization to limit cache poisoning scope
  • Configure shorter TTLs for prefetch-related URLs as a temporary measure
bash
# Example CDN configuration (Cloudflare Page Rule or similar)
# Prevent caching empty responses for Next.js prefetch routes
# Add a Page Rule or Transform Rule:
# URL Pattern: */_next/data/*
# Cache Control: no-store
# Or set minimum cacheable response size > 0 bytes

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.42%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Technical References
  • GitHub Next.js Version Comparison

  • GitHub Issue #45301
  • Vendor Resources
  • GitHub Pull Request #54732
  • 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
Default Legacy - Prefooter | 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