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-2025-27415

CVE-2025-27415: Nuxt Framework Cache Poisoning DOS Vulnerability

CVE-2025-27415 is a cache poisoning denial of service vulnerability in Nuxt framework that allows attackers to render sites unavailable by poisoning CDN caches. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-27415 Overview

CVE-2025-27415 is a CDN cache poisoning vulnerability affecting Nuxt, an open-source web development framework for Vue.js. Prior to version 3.16.0, attackers can craft malicious HTTP requests that exploit how Nuxt handles payload responses, potentially poisoning CDN caches and rendering affected websites completely unavailable to legitimate users.

Critical Impact

This vulnerability enables attackers to perform denial-of-service attacks by poisoning CDN caches, potentially making affected Nuxt sites completely unavailable indefinitely through sustained cache poisoning attacks.

Affected Products

  • Nuxt versions prior to 3.16.0
  • Nuxt applications deployed behind CDN services that ignore query strings for cache key determination
  • Vue.js applications built with vulnerable Nuxt framework versions

Discovery Timeline

  • 2025-03-19 - CVE CVE-2025-27415 published to NVD
  • 2025-12-03 - Last updated in NVD database

Technical Details for CVE-2025-27415

Vulnerability Analysis

This cache poisoning vulnerability exploits a fundamental mismatch between how Nuxt processes requests and how certain CDN configurations determine cache keys. When a Nuxt application receives a request with a specially crafted query string, such as ?/_payload.json, the server incorrectly renders the response as JSON payload data instead of the expected HTML content.

The core issue lies in Nuxt's request handling logic, which interprets certain query string patterns as requests for internal payload data. This behavior, combined with CDN configurations that strip or ignore query strings when computing cache keys, creates a scenario where malicious JSON responses can be cached and served to all subsequent visitors requesting the legitimate HTML page.

The vulnerability is classified under CWE-349 (Acceptance of Extraneous Untrusted Data With Trusted Data), as the application improperly accepts and processes crafted input that leads to unintended behavior in downstream caching systems.

Root Cause

The root cause stems from Nuxt's internal routing mechanism that handles /_payload.json requests for server-side rendering and hydration purposes. The framework fails to properly validate and restrict when payload responses should be generated, allowing attackers to trigger payload responses through query string manipulation. When combined with CDN caching behavior that normalizes URLs by stripping query parameters, the poisoned JSON response gets associated with the clean URL path.

Attack Vector

The attack exploits the network-accessible nature of web applications deployed behind CDNs. An attacker sends a crafted request to the target Nuxt application with a query string like ?/_payload.json, which causes Nuxt to respond with JSON data instead of HTML. If the CDN in front of the application uses URL path-based cache keys without considering query strings, this JSON response becomes cached for the base URL path.

Subsequent legitimate visitors requesting the same URL receive the cached JSON response instead of the expected HTML page, effectively breaking the website. Attackers can automate this attack by sending poisoning requests at regular intervals matching the CDN cache duration, maintaining persistent unavailability of the targeted site.

The attack requires no authentication or special privileges, can be executed from any network location, and directly impacts site availability without affecting data confidentiality or integrity.

Detection Methods for CVE-2025-27415

Indicators of Compromise

  • Unexpected JSON responses being served for HTML page requests
  • Anomalous HTTP requests containing ?/_payload.json or similar query string patterns in access logs
  • Sudden increases in requests with unusual query string combinations targeting root or high-traffic paths
  • User reports of pages displaying raw JSON data instead of rendered content

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests with /_payload.json query string patterns
  • Monitor CDN cache hit/miss ratios for unexpected changes that could indicate cache poisoning attempts
  • Configure log analysis to alert on unusual query string patterns in requests to Nuxt application endpoints
  • Deploy synthetic monitoring to regularly verify that critical pages return expected content types

Monitoring Recommendations

  • Enable detailed access logging on CDN and origin servers with query string preservation for forensic analysis
  • Set up content-type monitoring alerts to detect when HTML pages unexpectedly serve application/json responses
  • Implement real-user monitoring (RUM) to detect client-side rendering failures indicative of cache poisoning
  • Create dashboards tracking request patterns to identify potential automated cache poisoning campaigns

How to Mitigate CVE-2025-27415

Immediate Actions Required

  • Upgrade Nuxt to version 3.16.0 or later immediately to address this vulnerability
  • Review CDN caching configuration to ensure query strings are included in cache key computation
  • Purge existing CDN caches after applying the patch to remove any potentially poisoned content
  • Implement WAF rules to block suspicious query string patterns while awaiting patch deployment

Patch Information

The vulnerability has been fixed in Nuxt version 3.16.0. Users should update their Nuxt dependency to this version or later. For detailed information about the security fix, refer to the GitHub Security Advisory GHSA-jvhm-gjrh-3h93.

To update Nuxt, modify your package.json to specify the patched version and run your package manager's update command.

Workarounds

  • Configure CDN to include the full query string in cache key computation to prevent cache poisoning across different request variants
  • Implement origin-level request filtering to reject or redirect requests containing /_payload.json in query strings
  • Configure cache headers on Nuxt responses to reduce cache duration for sensitive routes, limiting the impact window of successful poisoning attempts
  • Deploy edge-level validation to verify response content types match expected values before caching
bash
# Example CDN configuration (Cloudflare-style)
# Include query string in cache key to prevent poisoning
# Cache Rule: Add query string to cache key
cache_key_query_string = "include_all"

# Alternative: Block suspicious patterns at edge
# Firewall Rule: Block requests with payload patterns in query string
http.request.uri.query contains "/_payload"
Action: Block

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNuxt

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.13%

  • 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
  • CWE-349
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34404: Nuxt OG Image DoS Vulnerability

  • CVE-2026-34405: Nuxt OG Image XSS Vulnerability

  • CVE-2026-31860: Unhead useHeadSafe() XSS Vulnerability

  • CVE-2023-3224: Nuxt Nuxt RCE 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