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

CVE-2026-44115: OpenClaw RCE Vulnerability Explained

CVE-2026-44115 is a remote code execution flaw in OpenClaw that allows attackers to bypass allowlist validation through shell expansion in heredoc bodies. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-44115 Overview

CVE-2026-44115 affects OpenClaw versions before 2026.4.22. The flaw resides in the exec allowlist analysis routine, which fails to inspect shell expansion tokens embedded in unquoted heredoc bodies. Attackers with low-privileged access can smuggle expansion sequences past the allowlist validator and execute unapproved commands at runtime. The issue maps to [CWE-184: Incomplete List of Disallowed Inputs] and exposes confidentiality, integrity, and availability of the host running OpenClaw.

Critical Impact

Authenticated attackers can bypass command allowlist enforcement and achieve arbitrary command execution by hiding shell expansion inside unquoted heredoc bodies.

Affected Products

  • OpenClaw versions prior to 2026.4.22
  • Deployments relying on OpenClaw's exec allowlist as a security boundary
  • Automation pipelines that pass user-influenced heredoc content to OpenClaw exec routines

Discovery Timeline

  • 2026-05-06 - CVE-2026-44115 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-44115

Vulnerability Analysis

OpenClaw enforces command execution policy through an allowlist analyzer that inspects exec invocations before they run. The analyzer parses the command surface to confirm only approved binaries and arguments reach the shell. Versions before 2026.4.22 skip deep inspection of heredoc bodies when the heredoc delimiter is unquoted. Unquoted heredocs in POSIX shells perform parameter expansion, command substitution, and arithmetic expansion on the body before the data reaches the target process. An attacker can place expansion tokens such as $(...) or backticks inside the heredoc body to invoke commands not present in the allowlist. The analyzer treats the body as static data and approves the call, while the shell expands the tokens at runtime.

Root Cause

The root cause is incomplete denylist and allowlist coverage during static analysis of shell constructs. The validator distinguishes quoted from unquoted heredocs but does not scan unquoted bodies for expansion metacharacters. This gap fits the [CWE-184] pattern, where the protective list omits dangerous inputs that the underlying interpreter still processes.

Attack Vector

Exploitation requires network access and low-privileged authentication to a component that submits exec requests to OpenClaw. The attacker crafts a payload containing an unquoted heredoc whose body embeds shell expansion tokens that resolve to disallowed commands. OpenClaw approves the request because the visible command matches the allowlist. The shell then evaluates the expansion and runs attacker-chosen commands with the privileges of the OpenClaw exec context.

No verified exploit code is currently published. Refer to the GitHub Security Advisory GHSA-x3h8-jrgh-p8jx and the VulnCheck Advisory for protocol-level detail.

Detection Methods for CVE-2026-44115

Indicators of Compromise

  • Exec audit logs containing heredoc operators (<<, <<-) followed by unquoted delimiters in submitted commands
  • Presence of expansion tokens such as $(, backticks, or ${ inside heredoc bodies passed to OpenClaw
  • Child processes spawned by OpenClaw exec routines that do not match the configured allowlist
  • Unexpected outbound network connections or file writes initiated by OpenClaw worker processes

Detection Strategies

  • Parse OpenClaw exec request logs for heredoc constructs and flag bodies containing shell metacharacters
  • Compare the post-expansion process tree against the documented allowlist and alert on divergence
  • Apply integrity checks to OpenClaw binaries and confirm the running version is at or above 2026.4.22

Monitoring Recommendations

  • Forward OpenClaw audit and process telemetry to a centralized analytics platform with retention sufficient for incident review
  • Baseline normal exec patterns per service account and alert on new command lineages from OpenClaw
  • Track failed allowlist matches alongside successful approvals to identify probing of the validator

How to Mitigate CVE-2026-44115

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.22 or later as published in the upstream commit b2e8b7d
  • Audit recent exec submissions for heredoc payloads containing expansion tokens
  • Restrict OpenClaw service privileges to the minimum required for legitimate workloads

Patch Information

The fix is included in OpenClaw 2026.4.22. The corrective change is documented in commit b2e8b7d4bb2f22eaa16f5c4b07547774e90b65a5 and described in GHSA-x3h8-jrgh-p8jx. Apply the upgrade across all OpenClaw nodes and restart dependent services to load the patched analyzer.

Workarounds

  • Reject any exec input that contains heredoc operators until the patch is deployed
  • Force callers to use quoted heredoc delimiters, which suppress shell expansion in the body
  • Run OpenClaw under a constrained shell or sandbox that disables command substitution and parameter expansion
bash
# Configuration example
# Block heredoc constructs at the input layer until upgrade is complete
if printf '%s' "$REQUEST" | grep -Eq '<<-?[[:space:]]*[A-Za-z_]'; then
  echo "rejected: heredoc not permitted" >&2
  exit 1
fi

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOpenclaw

  • SeverityHIGH

  • CVSS Score8.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-184
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory

  • VulnCheck Advisory
  • Related CVEs
  • CVE-2026-43584: OpenClaw RCE Vulnerability

  • CVE-2026-44114: OpenClaw RCE Vulnerability

  • CVE-2026-42434: OpenClaw Sandbox Escape RCE Vulnerability

  • CVE-2026-42435: OpenClaw RCE Vulnerability Explained
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