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

CVE-2026-32058: Openclaw Auth Bypass Vulnerability

CVE-2026-32058 is an authentication bypass flaw in Openclaw that allows attackers to reuse approved requests with modified environment variables, bypassing execution controls. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 27, 2026

CVE-2026-32058 Overview

OpenClaw versions prior to 2026.2.26 contain an approval context-binding weakness (CWE-863: Incorrect Authorization) in system.run execution flows with host=node that allows reuse of previously approved requests with modified environment variables. Attackers with access to an approval ID can exploit this by reusing an approval with changed env input, effectively bypassing execution-integrity controls in approval-enabled workflows.

Critical Impact

This authorization bypass vulnerability enables attackers to circumvent approval workflow controls by reusing valid approval IDs with manipulated environment variables, potentially leading to unauthorized command execution in Node.js environments.

Affected Products

  • OpenClaw versions prior to 2026.2.26
  • OpenClaw for Node.js (all affected versions)

Discovery Timeline

  • 2026-03-21 - CVE-2026-32058 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-32058

Vulnerability Analysis

The vulnerability stems from insufficient context binding in OpenClaw's approval workflow system. When executing commands via system.run with host=node, the approval mechanism fails to properly bind the approval context to all relevant request parameters, specifically the environment variables. This architectural flaw allows an attacker who has obtained a valid approval ID to replay the approval request while substituting different environment variable values.

The attack requires network access and user interaction, along with low-privilege access to obtain an approval ID. While the complexity of exploitation is elevated due to the prerequisite conditions, the integrity impact allows attackers to modify execution contexts in ways not originally authorized.

Root Cause

The root cause is an incorrect authorization check (CWE-863) in the approval validation logic. When an approval is created for a system.run operation, the system does not cryptographically bind or verify the environment variables (env input) against the original approved request. This design oversight allows the approval token to be valid even when the execution context has been modified.

Attack Vector

The attack follows this sequence:

  1. An attacker obtains access to a valid approval ID from an approval-enabled workflow
  2. The attacker crafts a new request using the same approval ID but with modified environment variables
  3. The OpenClaw system validates the approval ID without verifying the environment variable integrity
  4. The modified command executes with the attacker-controlled environment variables, bypassing the intended approval controls

The vulnerability is exploited over the network and requires an authenticated user with low privileges to have access to approval IDs. User interaction is required as part of the workflow process, and the attack complexity is high due to the specific conditions required.

Detection Methods for CVE-2026-32058

Indicators of Compromise

  • Unexpected reuse of approval IDs across multiple system.run requests with different parameters
  • Audit log entries showing approval ID reuse with varying environment variable configurations
  • Anomalous execution patterns in Node.js host workflows where approved commands have unexpected environment contexts

Detection Strategies

  • Monitor approval workflow logs for approval ID reuse patterns, particularly where the same approval is associated with different env parameters
  • Implement alerting for system.run executions where the environment variables differ from the originally approved request
  • Audit authentication and authorization events in OpenClaw deployments for signs of approval context manipulation

Monitoring Recommendations

  • Enable verbose logging for all approval-related operations in OpenClaw
  • Create correlation rules to detect approval ID reuse across distinct request contexts
  • Review system.run execution logs periodically for unauthorized environment variable modifications

How to Mitigate CVE-2026-32058

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.26 or later immediately
  • Audit existing approval workflows for any signs of exploitation
  • Review and rotate any approval IDs that may have been exposed to untrusted parties
  • Temporarily disable system.run with host=node in approval workflows if immediate patching is not possible

Patch Information

OpenClaw has released a security patch in version 2026.2.26 that addresses this approval context-binding weakness. The fix is available in commit 10481097f8e6dd0346db9be0b5f27570e1bdfcfa. For full details on the vulnerability and remediation, refer to the GitHub Security Advisory GHSA-hjvp-qhm6-wrh2.

Workarounds

  • Restrict access to approval IDs by implementing additional access controls around approval workflow data
  • Implement application-level logging to detect environment variable changes between approval creation and execution
  • Use network segmentation to limit exposure of OpenClaw instances processing approval workflows
  • Consider implementing custom validation hooks to verify environment variable integrity before execution

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechOpenclaw

  • SeverityLOW

  • CVSS Score2.0

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:L/UI:A/VC:N/VI:L/VA:N/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
  • ConfidentialityHigh
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • VulnCheck Advisory on Weakness
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35657: Openclaw Auth Bypass Vulnerability

  • CVE-2026-35656: Openclaw Auth Bypass Vulnerability

  • CVE-2026-35655: Openclaw Auth Bypass Vulnerability

  • CVE-2026-35654: Openclaw Auth Bypass 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