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-2026-27597

CVE-2026-27597: Enclave JavaScript Sandbox RCE Vulnerability

CVE-2026-27597 is a remote code execution flaw in Enclave JavaScript sandbox that allows attackers to escape security boundaries and execute arbitrary code. This post covers technical details, affected versions, and mitigation.

Published: February 27, 2026

CVE-2026-27597 Overview

CVE-2026-27597 is a critical sandbox escape vulnerability affecting Enclave, a secure JavaScript sandbox designed for safe AI agent code execution. Prior to version 2.11.1, it is possible to escape the security boundaries set by @enclave-vm/core, which can be exploited to achieve remote code execution (RCE). This vulnerability poses a significant risk to environments where untrusted JavaScript code is executed within the Enclave sandbox.

Critical Impact

Attackers can escape the Enclave JavaScript sandbox to execute arbitrary code on the host system, completely compromising the security isolation that the sandbox is designed to provide.

Affected Products

  • Enclave (@enclave-vm/core) versions prior to 2.11.1
  • Applications using Enclave for AI agent code execution
  • Systems relying on Enclave sandbox isolation for untrusted JavaScript execution

Discovery Timeline

  • February 25, 2026 - CVE-2026-27597 published to NVD
  • February 25, 2026 - Last updated in NVD database

Technical Details for CVE-2026-27597

Vulnerability Analysis

This vulnerability is classified as CWE-94 (Improper Control of Generation of Code - Code Injection). The sandbox escape flaw allows attackers to bypass the security boundaries implemented by Enclave's core module, enabling execution of arbitrary code outside the intended isolated environment. In the context of AI agent code execution, this is particularly dangerous as AI agents often process untrusted or dynamically generated code that must be contained within sandbox boundaries.

The vulnerability exploits weaknesses in how the sandbox handles identifier detection, particularly in object coercion scenarios. This allows malicious JavaScript code to access global objects and execute privileged operations that should be restricted by the sandbox.

Root Cause

The root cause lies in insufficient validation of identifiers during object coercion operations. The sandbox's AST (Abstract Syntax Tree) validation rules failed to properly detect disallowed identifiers when accessed through computed property access patterns or coercion mechanisms. This gap in the identifier detection logic allowed attackers to construct payloads that bypass the disallowed identifier checks and the global access restrictions.

Attack Vector

The attack is network-accessible with no authentication required. An attacker can craft malicious JavaScript code that, when executed within the Enclave sandbox, exploits the identifier detection weakness to access restricted globals and escape the sandbox environment. The changed scope allows the attack to impact resources beyond the vulnerable component itself.

The exploit leverages object coercion scenarios where static computed keys were not being properly analyzed by the security rules, allowing attackers to obfuscate access to disallowed identifiers and global objects.

typescript
// Security patch showing the fix - added coercion-utils import for proper identifier detection
// Source: libs/ast/src/rules/disallowed-identifier.rule.ts

 import * as walk from 'acorn-walk';
 import { ValidationRule, ValidationContext, ValidationSeverity } from '../interfaces';
 import { RuleConfigurationError } from '../errors';
+import { tryGetStaticComputedKeys } from './coercion-utils';

 /**
  * Options for DisallowedIdentifierRule

Source: GitHub Commit Update

typescript
// Security patch showing the fix - added coercion-utils import for global access rule
// Source: libs/ast/src/rules/no-global-access.rule.ts

 import type { ValidationRule, ValidationContext } from '../interfaces';
 import { ValidationSeverity } from '../interfaces';
 import * as walk from 'acorn-walk';
+import { tryGetStaticComputedKeys } from './coercion-utils';

 /**
  * Configuration options for NoGlobalAccessRule

Source: GitHub Commit Update

Detection Methods for CVE-2026-27597

Indicators of Compromise

  • Unexpected process spawning or system command execution from Node.js processes running Enclave
  • Sandbox execution logs showing access to restricted global objects like process, require, or global
  • Unusual outbound network connections originating from sandbox worker processes
  • File system access attempts from processes that should be sandboxed

Detection Strategies

  • Monitor AST validation logs for bypass attempts involving computed property access patterns
  • Implement runtime detection for attempts to access process, global, or require objects from sandboxed code
  • Deploy application-level logging to capture sandbox escape attempts and unusual code execution patterns
  • Use security monitoring tools to detect post-exploitation activity such as reverse shells or data exfiltration

Monitoring Recommendations

  • Enable verbose logging for Enclave sandbox validation failures and security rule violations
  • Implement anomaly detection for sandbox worker processes exhibiting unexpected system call patterns
  • Monitor package versions in production to ensure @enclave-vm/core version 2.11.1 or later is deployed
  • Set up alerts for any sandbox execution that triggers global access rule violations

How to Mitigate CVE-2026-27597

Immediate Actions Required

  • Upgrade @enclave-vm/core to version 2.11.1 or later immediately
  • Audit all applications using Enclave to ensure they are running the patched version
  • Review sandbox execution logs for any signs of exploitation attempts
  • Consider temporarily disabling untrusted code execution features until the patch is applied

Patch Information

The vulnerability has been fixed in Enclave version 2.11.1. The patch introduces proper handling of static computed keys through the tryGetStaticComputedKeys utility function, which is now used by both the DisallowedIdentifierRule and NoGlobalAccessRule to detect malicious identifier access patterns during object coercion scenarios.

For detailed patch information, see the GitHub Security Advisory GHSA-f229 and the security commit.

Workarounds

  • Restrict execution of untrusted JavaScript code until the patch can be applied
  • Implement additional process-level isolation (containers, VMs) around Enclave sandbox instances
  • Apply network egress filtering to limit potential damage from successful sandbox escapes
  • Use OS-level sandboxing mechanisms as an additional layer of defense
bash
# Upgrade @enclave-vm/core to the patched version
npm update @enclave-vm/core@2.11.1

# Verify the installed version
npm list @enclave-vm/core

# For yarn users
yarn upgrade @enclave-vm/core@2.11.1

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechEnclave

  • SeverityCRITICAL

  • CVSS Score10.0

  • EPSS Probability0.29%

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

  • GitHub Security Advisory GHSA-f229
  • Related CVEs
  • CVE-2026-25533: Enclave JavaScript Sandbox RCE Vulnerability

  • CVE-2026-22686: Enclave JavaScript Sandbox RCE Vulnerability
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