banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-28475

CVE-2026-28475: OpenClaw Auth Bypass Vulnerability

CVE-2026-28475 is an authentication bypass flaw in OpenClaw that exploits timing side-channels to recover authentication tokens. This article covers the technical details, affected versions, impact, and mitigation steps.

Published: March 6, 2026

CVE-2026-28475 Overview

OpenClaw versions prior to 2026.2.13 contain a timing attack vulnerability in the hook token validation mechanism. The application uses non-constant-time string comparison for hook token validation, allowing attackers to infer tokens through timing measurements. Remote attackers with network access to the hooks endpoint can exploit timing side-channels across multiple requests to gradually recover the authentication token, potentially leading to unauthorized access to webhook functionality.

Critical Impact

Attackers can exploit timing side-channel vulnerabilities to incrementally recover authentication tokens, bypassing security controls and gaining unauthorized access to protected webhook endpoints.

Affected Products

  • OpenClaw versions prior to 2026.2.13

Discovery Timeline

  • 2026-03-05 - CVE CVE-2026-28475 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-28475

Vulnerability Analysis

This vulnerability is classified under CWE-208 (Observable Timing Discrepancy), a cryptographic side-channel vulnerability category. The core issue stems from OpenClaw's use of standard string comparison operations for validating hook authentication tokens. Standard string comparison functions typically compare characters sequentially and return immediately upon finding a mismatch. This behavior creates measurable timing differences that correlate with how many characters of the input match the valid token.

An attacker can exploit this by sending multiple authentication requests with systematically varied token values and measuring the response times. By analyzing these timing differences across many requests, an attacker can determine correct token characters one position at a time, eventually reconstructing the entire authentication token.

Root Cause

The root cause is the use of non-constant-time string comparison for security-critical token validation. When comparing strings character by character, standard comparison functions exit early upon finding the first mismatched character. This creates timing variations where requests with more correct leading characters take slightly longer to process than those with incorrect characters at the beginning.

Attack Vector

The vulnerability is exploitable over the network by any attacker who can send requests to the OpenClaw hooks endpoint. The attack requires no authentication or user interaction but does require multiple requests to gather sufficient timing data. The attacker sends numerous crafted requests with varied token values while precisely measuring response times. Statistical analysis of these timing differences reveals information about the correct token value, allowing character-by-character recovery of the authentication secret.

The attack complexity is considered high due to the need for precise timing measurements and statistical analysis, which can be affected by network jitter and server load variations. However, local network attacks or attacks from nearby network positions significantly increase reliability.

Detection Methods for CVE-2026-28475

Indicators of Compromise

  • Unusual patterns of authentication requests to webhook endpoints with systematically varied token values
  • High volumes of failed authentication attempts from a single source in short time periods
  • Requests exhibiting sequential or brute-force-like patterns targeting the hooks endpoint

Detection Strategies

  • Monitor for abnormal request patterns to authentication endpoints, particularly rapid successive requests with minimal variation
  • Implement rate limiting and anomaly detection on webhook authentication endpoints
  • Review web server logs for unusual timing correlation attacks or enumeration attempts

Monitoring Recommendations

  • Enable detailed logging on webhook endpoints to capture authentication attempt patterns
  • Deploy network monitoring to detect timing attack signatures and suspicious request volumes
  • Configure alerts for authentication failure thresholds on the hooks endpoint

How to Mitigate CVE-2026-28475

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.13 or later immediately
  • Review webhook token security and consider rotating tokens after applying the patch
  • Implement additional rate limiting on webhook endpoints as a defense-in-depth measure

Patch Information

The vulnerability has been addressed in OpenClaw version 2026.2.13. The fix implements constant-time comparison for hook token validation, eliminating the timing side-channel. Technical details of the fix are available in the GitHub Commit Update.

Additional information is available from the GitHub Security Advisory and the VulnCheck Timing Attack Advisory.

Workarounds

  • Implement network-level access controls to restrict access to webhook endpoints to trusted IP ranges only
  • Deploy a reverse proxy or web application firewall with rate limiting capabilities in front of OpenClaw
  • Consider adding additional authentication layers such as mutual TLS for webhook integrations
bash
# Example: Restrict webhook endpoint access via firewall rules
# Allow only trusted webhook sources
iptables -A INPUT -p tcp --dport 443 -s TRUSTED_IP_RANGE -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -m string --string "/hooks" --algo bm -j DROP

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

  • SeverityMEDIUM

  • CVSS Score6.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/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
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-208
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory

  • VulnCheck Timing Attack Advisory
  • Related CVEs
  • CVE-2026-29606: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-28480: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-28477: OpenClaw OAuth Bypass Vulnerability

  • CVE-2026-28471: OpenClaw Auth Bypass Vulnerability
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
  • English
  • 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