A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-34156

CVE-2026-34156: Nocobase Nocobase RCE Vulnerability

CVE-2026-34156 is a remote code execution flaw in Nocobase's Workflow Script Node that allows authenticated attackers to escape the VM sandbox and execute code as root. This article covers technical details, affected versions, impact, and mitigation strategies.

Updated: May 15, 2026

CVE-2026-34156 Overview

CVE-2026-34156 is a sandbox escape vulnerability in NocoBase, an AI-powered no-code/low-code platform for building business applications. The flaw resides in the Workflow Script Node, which executes user-supplied JavaScript inside a Node.js vm sandbox with a custom require allowlist controlled by the WORKFLOW_SCRIPT_MODULES environment variable. The console object passed into the sandbox exposes host-realm WritableWorkerStdio stream objects through console._stdout and console._stderr. An authenticated attacker can traverse the prototype chain to escape the sandbox and execute arbitrary code as root. The issue affects all versions prior to 2.0.28 and is classified under [CWE-913: Improper Control of Dynamically-Managed Code Resources].

Critical Impact

Authenticated attackers can achieve Remote Code Execution as root on the NocoBase host, leading to full system compromise.

Affected Products

  • NocoBase versions prior to 2.0.28
  • Self-hosted NocoBase deployments using the Workflow Script Node feature
  • All platforms running the affected NocoBase versions

Discovery Timeline

  • 2026-03-31 - CVE-2026-34156 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-34156

Vulnerability Analysis

The vulnerability stems from incomplete isolation between the Node.js vm sandbox and the host realm. NocoBase's Workflow Script Node lets authenticated users define JavaScript that runs server-side. To restrict capabilities, NocoBase relies on a custom require allowlist defined through the WORKFLOW_SCRIPT_MODULES environment variable.

The console object injected into the sandbox context exposes internal stream references through console._stdout and console._stderr. These references point to WritableWorkerStdio instances allocated in the host realm. By walking the prototype chain of these stream objects, an attacker reaches constructors and functions defined outside the sandbox. Invoking these host-realm functions returns objects bound to the privileged outer context.

Once a reference to a host-realm Function constructor is obtained, the attacker can compile and execute arbitrary JavaScript with the privileges of the NocoBase process, which typically runs as root.

Root Cause

The Node.js vm module does not provide a true security boundary. NocoBase compounded this by exposing host-realm objects through console._stdout and console._stderr inside the sandbox context. This breaks the assumption that only sandbox-realm primitives are reachable from guest code [CWE-913].

Attack Vector

Exploitation requires an authenticated NocoBase account with permissions to create or edit Workflow Script Nodes. The attacker submits JavaScript that accesses console._stdout, traverses its prototype chain to reach a host-realm function, and uses that function to evaluate attacker-controlled code. The network attack vector and low attack complexity allow reliable exploitation against any reachable NocoBase instance. The EPSS percentile of 96.83 indicates a high likelihood of exploitation activity relative to other CVEs.

The vulnerability mechanism is documented in the NocoBase GitHub Security Advisory GHSA-px3p-vgh9-m57c and the patch pull request #8967. No verified public exploit code is referenced in the advisory.

Detection Methods for CVE-2026-34156

Indicators of Compromise

  • Workflow Script Node definitions that reference console._stdout, console._stderr, constructor, or __proto__ traversal patterns.
  • Unexpected child processes spawned by the NocoBase Node.js process, such as sh, bash, curl, or wget.
  • Outbound network connections from the NocoBase host to unfamiliar IP addresses or domains shortly after workflow execution.
  • New or modified workflow definitions created by accounts that do not normally author workflows.

Detection Strategies

  • Audit NocoBase workflow definitions for JavaScript that accesses internal console properties or performs prototype chain walks.
  • Monitor process trees on NocoBase hosts for non-Node.js children of the main application process.
  • Alert on authenticated API calls to workflow creation and update endpoints from non-administrative users.
  • Review NocoBase application logs for script execution errors that may indicate exploitation attempts.

Monitoring Recommendations

  • Forward NocoBase application and host logs to a centralized SIEM for correlation with process and network telemetry.
  • Enable behavioral monitoring on the underlying host to flag unexpected file writes, credential access, or privilege use by the Node.js runtime.
  • Track changes to the WORKFLOW_SCRIPT_MODULES environment variable and to workflow script artifacts in version control or backups.

How to Mitigate CVE-2026-34156

Immediate Actions Required

  • Upgrade NocoBase to version 2.0.28 or later without delay using the GitHub Release v2.0.28.
  • Restrict Workflow Script Node creation and editing permissions to a minimal set of trusted administrators.
  • Audit existing workflows for malicious scripts introduced before patching and remove any unauthorized definitions.
  • Rotate credentials, API keys, and secrets accessible from the NocoBase host if compromise is suspected.

Patch Information

NocoBase resolved the vulnerability in version 2.0.28. The fix is implemented in pull request #8967 and described in the GHSA-px3p-vgh9-m57c advisory. Administrators of self-hosted deployments should apply the upgrade immediately.

Workarounds

  • Disable the Workflow Script Node feature until the upgrade to 2.0.28 is complete.
  • Run the NocoBase service under a non-root, least-privilege user account to reduce the impact of any successful sandbox escape.
  • Place NocoBase behind network controls that limit authenticated access to known administrator sources.
bash
# Configuration example: upgrade NocoBase to the patched release
docker pull nocobase/nocobase:2.0.28
docker stop nocobase && docker rm nocobase
docker run -d --name nocobase \
  --user node \
  -e WORKFLOW_SCRIPT_MODULES="" \
  -p 13000:80 \
  nocobase/nocobase:2.0.28

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechNocobase

  • SeverityCRITICAL

  • CVSS Score9.9

  • EPSS Probability31.41%

  • 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-913
  • Technical References
  • GitHub Release v2.0.28
  • Vendor Resources
  • GitHub Pull Request

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-6224: NocoBase Workflow JavaScript RCE Flaw

  • CVE-2026-41641: NocoBase SQL Injection Vulnerability

  • CVE-2026-41640: NocoBase SQL Injection Vulnerability

  • CVE-2026-40346: NocoBase SSRF 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