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
    • 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-3224

CVE-2023-3224: Nuxt Nuxt RCE Vulnerability

CVE-2023-3224 is a remote code execution flaw in Nuxt Nuxt that allows attackers to inject malicious code. This post covers the technical details, affected versions prior to 3.5.3, security impact, and mitigation steps.

Published: February 4, 2026

CVE-2023-3224 Overview

CVE-2023-3224 is a code injection vulnerability affecting the Nuxt framework, a popular Vue.js-based web application framework. This vulnerability exists in versions prior to 3.5.3 and allows unauthenticated attackers to execute arbitrary code through the framework's test component renderer endpoint. The vulnerability stems from improper access controls on development-time server-side rendering functionality that was inadvertently exposed in production environments.

Critical Impact

Unauthenticated remote attackers can achieve full server compromise through code injection, potentially leading to complete system takeover, data exfiltration, and lateral movement within affected infrastructure.

Affected Products

  • Nuxt framework versions prior to 3.5.3
  • Applications built with vulnerable Nuxt versions in development mode
  • Server-side rendered (SSR) Nuxt applications with exposed test endpoints

Discovery Timeline

  • June 13, 2023 - CVE-2023-3224 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2023-3224

Vulnerability Analysis

This code injection vulnerability exists within Nuxt's server-side rendering component test functionality. The vulnerable code path is located in the nuxt-root.vue component, which handles a special URL endpoint (/__nuxt_component_test__/) designed for component testing during development. The critical flaw is that this endpoint was accessible whenever the application ran in development mode (process.dev), regardless of whether it was actually in a test environment.

The vulnerability allows attackers to craft malicious requests to the /__nuxt_component_test__/ endpoint, which dynamically imports and renders components. By manipulating the URL, attackers can potentially inject and execute arbitrary code on the server, as the component wrapper processes the URL path without proper validation or access restrictions.

Root Cause

The root cause lies in insufficient access control logic within the SingleRenderer component initialization. The original code checked only for process.dev and process.server conditions before enabling the test component wrapper functionality. This meant any development-mode deployment with SSR enabled would expose this dangerous endpoint.

The fix introduces an additional process.test condition, ensuring that the vulnerable code path is only accessible when the application is explicitly running in a test environment. Additionally, the patch exports devRootDir to further restrict access to components within the application's root directory.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending crafted HTTP requests to the /__nuxt_component_test__/ endpoint on a vulnerable Nuxt application running in development mode. The endpoint's dynamic import functionality can be abused to execute arbitrary code on the server.

text
// Vulnerable code (before patch):
const SingleRenderer = process.dev && process.server && url.startsWith('/__nuxt_component_test__/') && defineAsyncComponent(() => import('#build/test-component-wrapper.mjs')
  .then(r => r.default(process.server ? url : window.location.href)))

// Patched code (after fix):
const SingleRenderer = process.test && process.dev && process.server && url.startsWith('/__nuxt_component_test__/') && /* #__PURE__ */ defineAsyncComponent(() => import('#build/test-component-wrapper.mjs')
  .then(r => r.default(process.server ? url : window.location.href)))

Source: GitHub Commit Details

Detection Methods for CVE-2023-3224

Indicators of Compromise

  • HTTP requests containing /__nuxt_component_test__/ in the URL path targeting your Nuxt applications
  • Unexpected server-side code execution or process spawning on Nuxt application servers
  • Anomalous import or require statements in server logs referencing the test component wrapper
  • Unusual outbound network connections from Nuxt application server processes

Detection Strategies

  • Monitor web server access logs for requests to /__nuxt_component_test__/ endpoints
  • Implement Web Application Firewall (WAF) rules to block requests containing the test endpoint path
  • Deploy runtime application self-protection (RASP) solutions to detect dynamic code execution attempts
  • Review Nuxt application configurations to ensure development mode is not enabled in production

Monitoring Recommendations

  • Configure alerting on any access attempts to /__nuxt_component_test__/ URLs in production environments
  • Implement application-level logging to track dynamic component imports and SSR rendering activities
  • Monitor process execution and file system activities on Nuxt application servers for signs of compromise
  • Establish baseline behavior for Nuxt applications and alert on deviations indicating potential exploitation

How to Mitigate CVE-2023-3224

Immediate Actions Required

  • Upgrade Nuxt framework to version 3.5.3 or later immediately
  • Ensure production deployments are not running in development mode (process.dev should be false)
  • Block requests to /__nuxt_component_test__/ at the network or WAF level as an interim measure
  • Audit existing Nuxt applications to identify any running vulnerable versions

Patch Information

The vulnerability has been addressed in Nuxt version 3.5.3. The fix adds an additional process.test condition to ensure the test component wrapper is only accessible during actual test runs. Organizations should upgrade to version 3.5.3 or later by updating the nuxt package in their package.json and running their package manager's update command. The security patch is available through the official GitHub commit.

Workarounds

  • Configure reverse proxy or WAF rules to block all requests containing /__nuxt_component_test__/ in the path
  • Ensure NODE_ENV is set to production on all production deployments to disable development features
  • Implement network segmentation to limit exposure of development-mode applications
  • Use containerization with read-only file systems to limit the impact of potential code execution
bash
# Configuration example - Block vulnerable endpoint in nginx
location ~* /__nuxt_component_test__ {
    deny all;
    return 403;
}

# Ensure production mode in deployment
export NODE_ENV=production

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechNuxt

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability1.93%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-94
  • Vendor Resources
  • GitHub Commit Details

  • Huntr Bug Bounty Entry
  • Related CVEs
  • CVE-2026-34405: Nuxt OG Image XSS Vulnerability

  • CVE-2026-34404: Nuxt OG Image DoS Vulnerability

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

  • CVE-2025-27415: Nuxt Framework Cache Poisoning 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