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

CVE-2026-44118: OpenClaw Auth Bypass Vulnerability

CVE-2026-44118 is an authentication bypass flaw in OpenClaw that allows non-owner clients to impersonate owners through spoofed bearer tokens. This article covers technical details, affected versions, and mitigations.

Published: May 7, 2026

CVE-2026-44118 Overview

CVE-2026-44118 is an authentication bypass vulnerability in OpenClaw versions before 2026.4.22. The flaw resides in the gateway component, which derives loopback Model Context Protocol (MCP) owner context from spoofable server-issued bearer tokens passed in request headers. A non-owner loopback client can manipulate the sender-owner header metadata to present itself as the owner, bypassing owner-gated operations. The vulnerability is tracked as CWE-290: Authentication Bypass by Spoofing.

Critical Impact

Local attackers with low privileges can escalate to owner context, gaining unauthorized access to owner-restricted MCP operations and sensitive runtime state.

Affected Products

  • OpenClaw versions prior to 2026.4.22
  • OpenClaw gateway CLI backend (gateway-cli-backend)
  • OpenClaw MCP loopback runtime

Discovery Timeline

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

Technical Details for CVE-2026-44118

Vulnerability Analysis

The vulnerability stems from how the OpenClaw gateway determines whether an MCP loopback client should be treated as the session owner. Prior to the patch, the gateway propagated the boolean OPENCLAW_MCP_SENDER_IS_OWNER environment variable alongside a single shared OPENCLAW_MCP_TOKEN to spawned CLI processes. The owner context was effectively asserted by header metadata rather than cryptographic proof.

Because the sender-owner indicator was carried in client-controllable header metadata, a non-owner loopback client could declare itself as the owner. The MCP server accepted the spoofed claim and authorized owner-only operations. This breaks the trust boundary between owner and non-owner loopback clients sharing the same host.

Root Cause

The root cause is conflation of authentication with self-asserted metadata. The gateway issued one bearer token usable by both owner and non-owner contexts, then relied on a separate header flag to distinguish them. Anyone holding the shared token could set the flag arbitrarily.

Attack Vector

Exploitation requires local access and low privileges on a host running OpenClaw. An attacker with a non-owner loopback session manipulates the sender-owner header metadata when issuing requests to the MCP endpoint. The gateway honors the spoofed claim and grants owner-gated functionality, resulting in high impact to confidentiality, integrity, and availability of the MCP session.

typescript
// Patch: src/agents/cli-runner/prepare.ts
       : undefined,
     env: mcpLoopbackRuntime
       ? {
-          OPENCLAW_MCP_TOKEN: mcpLoopbackRuntime.token,
+          OPENCLAW_MCP_TOKEN:
+            params.senderIsOwner === true
+              ? mcpLoopbackRuntime.ownerToken
+              : mcpLoopbackRuntime.nonOwnerToken,
           OPENCLAW_MCP_AGENT_ID: sessionAgentId ?? "",
           OPENCLAW_MCP_ACCOUNT_ID: params.agentAccountId ?? "",
           OPENCLAW_MCP_SESSION_KEY: params.sessionKey ?? "",
           OPENCLAW_MCP_MESSAGE_CHANNEL: params.messageProvider ?? "",
-          OPENCLAW_MCP_SENDER_IS_OWNER: params.senderIsOwner === true ? "true" : "false",
         }
       : undefined,
     warn: (message) => cliBackendLog.warn(message),

Source: GitHub commit 3cb1a56. The fix replaces the single shared token plus owner-flag scheme with two distinct tokens (ownerToken and nonOwnerToken), so owner context is derived from which token the client presents rather than a header claim.

Detection Methods for CVE-2026-44118

Indicators of Compromise

  • Loopback MCP requests where the sender-owner or equivalent header is set to true from a process that was not authorized as owner.
  • Unexpected owner-only MCP operations (privileged tool calls, configuration changes) initiated from non-owner agent sessions.
  • OpenClaw gateway logs showing owner-gated actions correlated with multiple distinct loopback PIDs in a short window.

Detection Strategies

  • Audit OpenClaw gateway logs for owner-context operations and correlate against the originating CLI runner process and session key.
  • Inspect the OPENCLAW_MCP_SENDER_IS_OWNER environment variable on running CLI runner processes; in patched deployments this variable should no longer be present.
  • Compare bearer tokens used on inbound MCP loopback requests against the issued ownerToken to detect reuse of a shared token.

Monitoring Recommendations

  • Forward OpenClaw gateway and MCP loopback runtime logs to a centralized log store and alert on owner-gated operations originating from non-owner sessions.
  • Monitor process creation events for cli-runner invocations and capture environment variables to identify pre-patch deployments.
  • Track installed OpenClaw versions across the fleet and alert on any host running a release older than 2026.4.22.

How to Mitigate CVE-2026-44118

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.22 or later on every host running the gateway or CLI runner.
  • Rotate any MCP loopback bearer tokens issued by pre-patch versions, since they were shared across owner and non-owner contexts.
  • Restrict local access to hosts running OpenClaw to trusted users until the upgrade is complete.

Patch Information

The fix is implemented in GitHub commit 3cb1a56 and described in GitHub Security Advisory GHSA-r6xh-pqhr-v4xh. The patch modifies src/agents/cli-runner/prepare.ts and src/gateway/gateway-cli-backend.live-helpers.ts to issue distinct ownerToken and nonOwnerToken values and to derive owner context from the presented bearer token via resolveMcpLoopbackBearerToken. Additional context is available in the VulnCheck advisory.

Workarounds

  • If immediate upgrade is not possible, prevent untrusted local users from creating non-owner loopback sessions on hosts running OpenClaw.
  • Disable or firewall the MCP loopback endpoint where owner-gated operations are not required for normal workflows.
  • Apply host-level access controls so only the intended owner principal can reach the gateway loopback socket.
bash
# Verify installed version and upgrade
openclaw --version
npm install -g openclaw@2026.4.22

# Confirm the deprecated owner flag is no longer set on running runners
ps -eo pid,command | grep cli-runner
cat /proc/<pid>/environ | tr '\0' '\n' | grep OPENCLAW_MCP_SENDER_IS_OWNER

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

  • SeverityHIGH

  • CVSS Score8.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/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-290
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-r6xh-pqhr-v4xh

  • VulnCheck Advisory on Context Spoofing
  • Related CVEs
  • CVE-2026-43574: Openclaw Auth Bypass Vulnerability

  • CVE-2026-43572: Openclaw Authorization Bypass Vulnerability

  • CVE-2026-43571: Openclaw Auth Bypass Vulnerability

  • CVE-2026-43530: 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