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-43999

CVE-2026-43999: Vm2_project Vm2 RCE Vulnerability

CVE-2026-43999 is a remote code execution flaw in Vm2_project Vm2 that allows attackers to bypass sandbox restrictions and execute arbitrary code. This article covers technical details, affected versions, and mitigations.

Published: May 17, 2026

CVE-2026-43999 Overview

CVE-2026-43999 is a sandbox escape vulnerability in vm2, an open source virtual machine and sandbox library for Node.js. Versions prior to 3.11.0 contain an authorization flaw in the NodeVM builtin allowlist. When the module builtin is permitted, either explicitly or via the * wildcard, sandboxed code can invoke Module._load() directly in the host context. This bypasses all builtin restrictions and grants access to excluded modules such as child_process. The vulnerability is fixed in vm2 version 3.11.0.

Critical Impact

Attackers with the ability to execute code inside a vm2 sandbox can break out and achieve remote code execution on the host process when the module builtin is allowed.

Affected Products

  • vm2 versions prior to 3.11.0
  • Node.js applications using vm2 with module in the builtin allowlist
  • Node.js applications using vm2 with the * wildcard for builtins

Discovery Timeline

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

Technical Details for CVE-2026-43999

Vulnerability Analysis

The vm2 library provides a sandboxed JavaScript execution environment for Node.js. The NodeVM class accepts a configuration that includes a builtin allowlist controlling which Node.js core modules sandboxed code can require. This vulnerability falls under [CWE-863] Incorrect Authorization, because the allowlist check is not enforced when the module builtin itself is accessible to the sandbox.

When sandboxed code obtains a reference to the module builtin, it gains access to Module._load(). This internal Node.js function loads any module by name and executes it directly in the host context. The host context sits outside vm2's interception layer, so excluded builtins such as child_process, fs, and net become reachable. An attacker can then spawn arbitrary processes or read arbitrary files on the host system.

Root Cause

The root cause is missing authorization enforcement on transitive module access. vm2 validates the top-level builtin requested by sandboxed code but does not restrict what that builtin can subsequently load. The module builtin exposes the unrestricted Node.js module loader, which negates the entire allowlist policy when included.

Attack Vector

Exploitation requires the attacker to control code executed inside a NodeVM instance where module is in the allowed builtins list or * is configured. The attacker calls require('module') to obtain the module loader, then invokes Module._load('child_process') or any other excluded module. The returned object operates with full host privileges. Refer to the GitHub Security Advisory GHSA-947f-4v7f-x2v8 for vendor details.

Detection Methods for CVE-2026-43999

Indicators of Compromise

  • Unexpected child processes spawned by Node.js applications that embed vm2
  • Outbound network connections originating from sandboxed Node.js workloads
  • File system access to paths outside the expected vm2 working directory
  • Process trees showing node parents launching shells, interpreters, or system utilities

Detection Strategies

  • Inventory all Node.js applications using vm2 and identify versions below 3.11.0
  • Audit vm2 configurations for module in the builtin array or use of * wildcard
  • Monitor runtime behavior of Node.js processes hosting vm2 sandboxes for anomalous syscalls
  • Inspect application logs for require('module') calls originating from sandboxed code

Monitoring Recommendations

  • Alert on any child_process.spawn or exec invocation traced back to vm2 sandbox contexts
  • Track package manifests in CI/CD pipelines and flag continued use of vm2 below 3.11.0
  • Correlate Node.js process behavior with Endpoint Detection and Response telemetry covering process lineage and network activity

How to Mitigate CVE-2026-43999

Immediate Actions Required

  • Upgrade vm2 to version 3.11.0 or later across all Node.js applications
  • Remove module from any NodeVM builtin allowlist configuration
  • Replace * wildcard builtin configurations with an explicit minimal allowlist
  • Review code repositories and dependency manifests for transitive vm2 usage

Patch Information

The vm2 maintainers fixed this vulnerability in version 3.11.0. The patch enforces the builtin allowlist on transitive module loads performed through the module builtin. See the vm2 GitHub Security Advisory GHSA-947f-4v7f-x2v8 for release notes and remediation guidance.

Workarounds

  • If upgrading is not immediately possible, remove module from the builtin allowlist
  • Avoid the * wildcard for builtins and define the minimum set required by the application
  • Consider migrating to actively maintained sandboxing alternatives, as vm2 has known historical escape issues
bash
# Configuration example: minimal NodeVM builtin allowlist
npm install vm2@^3.11.0

# In application code, restrict builtins explicitly
# const { NodeVM } = require('vm2');
# const vm = new NodeVM({
#   require: {
#     builtin: ['path', 'url'], // do NOT include 'module' or '*'
#     external: false
#   }
# });

: 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.9

  • EPSS Probability0.16%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-863
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44005: Vm2 Sandbox RCE Vulnerability

  • CVE-2026-43997: Vm2_project Vm2 RCE Vulnerability

  • CVE-2026-43998: Vm2_project Vm2 RCE Vulnerability

  • CVE-2026-44000: Vm2 Sandbox Escape RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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