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

CVE-2026-32987: Openclaw Privilege Escalation Vulnerability

CVE-2026-32987 is a privilege escalation vulnerability in Openclaw that allows attackers to replay bootstrap codes during device pairing. This post covers technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-32987 Overview

CVE-2026-32987 is a critical authentication bypass vulnerability in OpenClaw before version 2026.3.13 that enables attackers to replay bootstrap setup codes during device pairing verification. The vulnerability exists in src/infra/device-bootstrap.ts and allows malicious actors to verify a valid bootstrap code multiple times before approval, escalating pending pairing scopes and achieving privilege escalation to operator.admin level access.

Critical Impact

Attackers can exploit this replay vulnerability to escalate privileges to operator.admin, gaining full administrative control over OpenClaw instances through unauthorized device pairing manipulation.

Affected Products

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

Discovery Timeline

  • 2026-03-29 - CVE-2026-32987 published to NVD
  • 2026-03-31 - Last updated in NVD database

Technical Details for CVE-2026-32987

Vulnerability Analysis

This vulnerability represents an Authentication Bypass via Capture-Replay (CWE-294) in OpenClaw's device pairing mechanism. The flaw allows bootstrap setup codes to be replayed during the device pairing verification process, enabling unauthorized privilege escalation.

The vulnerable code in src/infra/device-bootstrap.ts fails to implement proper one-time-use validation for bootstrap codes. When a device initiates pairing, the bootstrap code is intended to be a single-use token that authorizes the pairing request. However, due to insufficient replay protection, an attacker who intercepts or obtains a valid bootstrap code can submit it multiple times during the verification window before the legitimate approval occurs.

Each replay of the bootstrap code allows the attacker to escalate the pending pairing scopes incrementally. By chaining multiple replay attempts, an attacker can elevate their privileges from a standard pairing scope all the way to operator.admin, which grants full administrative control over the OpenClaw instance.

Root Cause

The root cause is insufficient validation of bootstrap setup codes during the device pairing verification process. The application does not properly track and invalidate bootstrap codes after their first use, nor does it implement nonce-based protection or timestamp validation to prevent replay attacks. This allows the same valid code to be submitted multiple times within the verification window.

Attack Vector

This is a network-based attack that requires no authentication or user interaction. An attacker can exploit this vulnerability remotely by:

  1. Intercepting or obtaining a valid bootstrap setup code during the device pairing process
  2. Replaying the captured bootstrap code multiple times against the verification endpoint
  3. Each successful replay escalates the pending pairing scope permissions
  4. Continuing the attack until operator.admin privileges are achieved
  5. Completing the pairing with elevated administrative access

The attack can be executed without prior privileges and does not require any special conditions, making it highly exploitable in network-accessible OpenClaw deployments.

Detection Methods for CVE-2026-32987

Indicators of Compromise

  • Multiple verification requests for the same bootstrap code within a short time window
  • Unusual pairing scope escalation patterns in device bootstrap logs
  • Unexpected operator.admin privilege assignments during device pairing
  • Anomalous activity from newly paired devices with elevated permissions

Detection Strategies

  • Monitor src/infra/device-bootstrap.ts related logs for repeated bootstrap code verification attempts
  • Implement rate limiting detection for device pairing verification endpoints
  • Alert on scope escalation patterns that deviate from normal pairing workflows
  • Review audit logs for devices that obtained operator.admin privileges through pairing

Monitoring Recommendations

  • Enable verbose logging for all device pairing and bootstrap verification operations
  • Set up alerts for multiple verification attempts using identical bootstrap codes
  • Monitor for privilege escalation events associated with new device pairings
  • Implement real-time monitoring of administrative privilege assignments

How to Mitigate CVE-2026-32987

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.3.13 or later immediately
  • Audit all existing device pairings for unauthorized operator.admin privilege escalation
  • Review pairing logs for evidence of bootstrap code replay attacks
  • Revoke any suspicious device pairings that may have been compromised

Patch Information

OpenClaw has released a security patch in version 2026.3.13 that addresses this vulnerability. The fix is available in commit 1803d16d5cec970c54b0e1ac46b31b1cbade335c. Organizations should upgrade to the patched version as soon as possible.

For detailed information about this vulnerability, refer to the GitHub Security Advisory GHSA-63f5-hhc7-cx6p.

Workarounds

  • Implement network-level restrictions to limit access to device pairing endpoints
  • Add rate limiting on bootstrap verification requests at the infrastructure level
  • Temporarily disable automated device pairing until the patch can be applied
  • Monitor and manually approve all device pairing requests with elevated scope requirements

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechOpenclaw

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/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-294
  • Technical References
  • VulnCheck Advisory for Openclaw
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-63f5-hhc7-cx6p
  • Related CVEs
  • CVE-2026-33577: Openclaw Privilege Escalation Vulnerability

  • CVE-2026-33579: Openclaw Privilege Escalation Vulnerability

  • CVE-2026-32915: Openclaw Privilege Escalation Vulnerability

  • CVE-2026-32922: Openclaw Privilege Escalation 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