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

CVE-2026-22172: Openclaw Auth Bypass Vulnerability

CVE-2026-22172 is an authorization bypass flaw in Openclaw that lets attackers self-declare elevated scopes and gain admin access. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-22172 Overview

OpenClaw versions prior to 2026.3.12 contain an authorization bypass vulnerability in the WebSocket connect path that allows shared-token or password-authenticated connections to self-declare elevated scopes without server-side binding. Attackers can exploit this logic flaw to present unauthorized scopes such as operator.admin and perform admin-only gateway operations.

Critical Impact

This authorization bypass vulnerability enables authenticated users to escalate their privileges by declaring arbitrary administrative scopes, potentially leading to complete system compromise through unauthorized gateway operations.

Affected Products

  • OpenClaw versions prior to 2026.3.12
  • OpenClaw for Node.js (all affected versions)
  • WebSocket-based authentication connections using shared-token or password authentication

Discovery Timeline

  • 2026-03-20 - CVE-2026-22172 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-22172

Vulnerability Analysis

This vulnerability represents a critical authorization bypass flaw (CWE-862: Missing Authorization) in OpenClaw's WebSocket authentication handling. The core issue stems from insufficient server-side validation when processing scope declarations during WebSocket connection establishment.

When users authenticate via shared-token or password-based methods, the application fails to properly bind and validate the declared scopes against the user's actual authorization level. This architectural weakness allows malicious actors to inject arbitrary scope values, such as operator.admin, into their connection requests without the server verifying whether the user has legitimate access to those elevated privileges.

The vulnerability is particularly severe because it affects the WebSocket connect path—a critical authentication boundary in real-time communication systems. Once an attacker successfully declares elevated scopes, they gain access to administrative gateway operations that should be restricted to privileged users only.

Root Cause

The root cause of this vulnerability is missing authorization checks (CWE-862) during the WebSocket connection handshake. The application accepts client-declared scopes at face value without performing server-side validation to ensure the authenticated user actually possesses the claimed privileges. This represents a fundamental trust boundary violation where the server incorrectly trusts client-supplied authorization data.

Attack Vector

The attack is network-accessible and requires only low-privilege authentication (shared-token or password-based credentials). An attacker with basic authenticated access can manipulate the WebSocket connection request to include elevated scope declarations. The attack requires no user interaction and can be executed remotely.

The exploitation flow involves:

  1. Establishing a WebSocket connection with valid but low-privilege credentials
  2. Injecting unauthorized scope declarations (e.g., operator.admin) during the connection handshake
  3. The server accepts the declared scopes without validation
  4. The attacker gains access to administrative gateway operations

For detailed technical information about the exploitation mechanism, refer to the GitHub Security Advisory and the VulnCheck Advisory.

Detection Methods for CVE-2026-22172

Indicators of Compromise

  • WebSocket connections with unusual or elevated scope declarations from low-privilege accounts
  • Authentication logs showing users accessing operator.admin or similar privileged scopes without proper authorization
  • Unexpected administrative gateway operations performed by standard user accounts
  • Anomalous patterns in WebSocket connection requests with scope parameters that don't match user profiles

Detection Strategies

  • Implement audit logging for all scope declarations during WebSocket authentication
  • Monitor for discrepancies between user role assignments and declared scopes in connection requests
  • Deploy SIEM rules to alert on privilege escalation patterns in WebSocket traffic
  • Review authentication logs for users accessing administrative endpoints without corresponding role assignments

Monitoring Recommendations

  • Enable verbose logging on WebSocket connection handlers to capture all scope declarations
  • Configure alerts for any connection attempts declaring operator.admin or equivalent privileged scopes
  • Implement real-time monitoring of gateway operation logs for unauthorized administrative actions
  • Establish baseline behavior profiles for user accounts to detect anomalous privilege usage

How to Mitigate CVE-2026-22172

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.3.12 or later immediately
  • Audit WebSocket connection logs for any signs of scope elevation exploitation
  • Review and revoke any suspicious administrative sessions or tokens
  • Implement additional server-side scope validation as a defense-in-depth measure

Patch Information

The vulnerability has been addressed in OpenClaw version 2026.3.12. Organizations should upgrade to this version or later to remediate the authorization bypass. The security patch implements proper server-side binding and validation of scope declarations during WebSocket authentication.

For official patch details and upgrade instructions, see the GitHub Security Advisory.

Workarounds

  • Disable shared-token and password-based WebSocket authentication until patching is complete
  • Implement network-level restrictions to limit WebSocket access to trusted sources
  • Deploy a Web Application Firewall (WAF) with rules to inspect and validate scope parameters in WebSocket requests
  • Use application-layer firewalling to enforce scope allowlists based on user authentication context
bash
# Example: Restrict WebSocket access at the network level until patched
# Add to firewall rules to limit WebSocket endpoint access
iptables -A INPUT -p tcp --dport 443 -m string --string "Upgrade: websocket" --algo bm -j DROP

# Or use nginx to restrict WebSocket connections to specific IP ranges
# Add to nginx configuration:
# location /ws {
#     allow 10.0.0.0/8;
#     deny all;
#     proxy_pass http://backend;
# }

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

  • SeverityCRITICAL

  • CVSS Score9.4

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/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-862
  • Technical References
  • VulnCheck Advisory
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34511: OpenClaw OAuth Auth Bypass Vulnerability

  • CVE-2026-34426: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-32916: Openclaw Auth Bypass Vulnerability

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