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
    • 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-2026-44008

CVE-2026-44008: vm2 Node.js Sandbox RCE Vulnerability

CVE-2026-44008 is a remote code execution flaw in vm2 sandbox for Node.js allowing attackers to escape the sandbox and execute arbitrary commands on the host. This article covers technical details, affected versions, and mitigation.

Published: May 14, 2026

CVE-2026-44008 Overview

CVE-2026-44008 is a sandbox escape vulnerability in vm2, an open source virtual machine and sandbox library for Node.js. The flaw exists in versions prior to 3.11.2 and stems from the neutralizeArraySpeciesBatch method. This method works with objects from the host side but can be invoked through a getter on the array prototype, exposing host-side objects into the sandbox. Attackers exploiting this issue can obtain a reference to the host Function object and execute arbitrary commands on the underlying system. The vulnerability is classified under [CWE-668]: Exposure of Resource to Wrong Sphere. The issue is resolved in vm2 version 3.11.2.

Critical Impact

Attackers can escape the vm2 sandbox and execute arbitrary commands on the host Node.js process with no authentication or user interaction.

Affected Products

  • vm2 versions prior to 3.11.2
  • Node.js applications embedding vm2 for untrusted code evaluation
  • Downstream packages depending on vulnerable vm2 releases

Discovery Timeline

  • 2026-05-13 - CVE-2026-44008 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44008

Vulnerability Analysis

The vm2 library isolates untrusted JavaScript by creating a sandboxed context and proxying objects between the host and the sandbox. To preserve isolation, vm2 must ensure that objects from the host side are never directly handed to sandboxed code. The neutralizeArraySpeciesBatch method was introduced to manage this boundary for array-related operations. However, the method invokes a getter defined on the array prototype while still operating on host-side objects, breaking the separation between the two realms.

An attacker controlling sandboxed code can define a getter on Array.prototype that observes objects passed in from the host context. Once a host object is captured, the attacker can walk its prototype chain to reach the host Function constructor. Calling Function from the host realm produces a function that executes outside the sandbox, allowing arbitrary command execution on the Node.js process.

Root Cause

The root cause is improper realm isolation in neutralizeArraySpeciesBatch. The method dispatches operations through user-controllable property accessors without first ensuring that the inputs belong to the sandbox realm, which violates the trust boundary vm2 is designed to enforce.

Attack Vector

Exploitation requires only that an application evaluates attacker-controlled JavaScript inside a vm2 sandbox. Many applications use vm2 to run user-supplied plugins, expressions, templates, or webhook scripts, making the attack surface broad. No prior authentication or local access is required when the sandbox is exposed through a network-facing service.

No verified public exploit code is available at this time. Refer to the GitHub Security Advisory GHSA-9qj6-qjgg-37qq for additional technical context.

Detection Methods for CVE-2026-44008

Indicators of Compromise

  • Unexpected child processes spawned from Node.js parent processes that host vm2 sandboxes
  • Outbound network connections originating from Node.js workers immediately after sandboxed code execution
  • Sandboxed scripts that define getters on Array.prototype or manipulate Symbol.species

Detection Strategies

  • Inventory all Node.js applications and audit package-lock.json and yarn.lock for vm2 versions below 3.11.2
  • Monitor runtime behavior of Node.js processes for spawning of shells, file system writes, or network egress outside expected baselines
  • Add static analysis rules that flag use of vm2 in dependency trees and gate deployments on patched versions

Monitoring Recommendations

  • Enable process lineage telemetry on hosts running Node.js services to detect sandbox escapes through anomalous child processes
  • Collect application logs that capture sandbox initialization, script source hashes, and execution errors for retrospective analysis
  • Alert on Node.js processes invoking child_process, fs, or net APIs immediately following untrusted script evaluation

How to Mitigate CVE-2026-44008

Immediate Actions Required

  • Upgrade vm2 to version 3.11.2 or later in all affected applications
  • Rebuild and redeploy any container images or serverless bundles that pin a vulnerable vm2 release
  • Treat any Node.js host that ran untrusted scripts on a vulnerable vm2 version as potentially compromised and investigate accordingly

Patch Information

The maintainers fixed the issue in vm2 3.11.2. The patch corrects neutralizeArraySpeciesBatch so that host-side objects are not exposed through prototype getters reachable from sandboxed code. See the GitHub Security Advisory GHSA-9qj6-qjgg-37qq for the official fix details.

Workarounds

  • Migrate to an actively maintained sandbox alternative if upgrading vm2 is not feasible, since vm2 is no longer maintained beyond this fix line
  • Refuse to evaluate untrusted JavaScript until the dependency is patched, and disable any feature that accepts user-supplied scripts
  • Apply OS-level isolation such as separate processes, restrictive seccomp profiles, or containers with read-only file systems to limit the blast radius of any escape
bash
# Configuration example
npm install vm2@3.11.2
npm ls vm2

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechVm2

  • SeverityCRITICAL

  • CVSS Score9.8

  • 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-668
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-45411: vm2 Node.js Sandbox RCE Vulnerability

  • CVE-2026-44009: vm2 Node.js Sandbox RCE Vulnerability

  • CVE-2026-24118: vm2 Node.js Sandbox Breakout RCE Flaw

  • CVE-2026-26956: vm2 Sandbox Escape 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