Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-41301

CVE-2026-41301: OpenClaw Auth Bypass Vulnerability

CVE-2026-41301 is an authentication bypass flaw in OpenClaw versions 2026.3.22 to 2026.3.30 that allows attackers to send forged messages before signature validation. This article covers technical details, impact, and mitigations.

Published: April 23, 2026

CVE-2026-41301 Overview

OpenClaw versions 2026.3.22 before 2026.3.31 contain a signature verification bypass vulnerability in the Nostr DM ingress path that allows pairing challenges to be issued before event signature validation. An unauthenticated remote attacker can send forged direct messages to create pending pairing entries and trigger pairing-reply attempts, consuming shared pairing capacity and triggering bounded relay and logging work on the Nostr channel.

Critical Impact

Remote attackers can exploit improper signature verification to flood pairing systems with forged requests, causing resource exhaustion and potential denial of service through pairing capacity consumption.

Affected Products

  • OpenClaw versions 2026.3.22 through 2026.3.30

Discovery Timeline

  • 2026-04-21 - CVE CVE-2026-41301 published to NVD
  • 2026-04-21 - Last updated in NVD database

Technical Details for CVE-2026-41301

Vulnerability Analysis

This vulnerability is classified under CWE-347 (Improper Verification of Cryptographic Signature). The core issue lies in the order of operations within the Nostr direct message processing pipeline. The application processes and responds to pairing challenges before verifying the cryptographic signature of incoming events, allowing unauthenticated actors to trigger stateful operations.

The vulnerability affects the nostr-bus.ts extension component, where sender authorization was being invoked before signature verification was completed. This architectural flaw means that an attacker can submit forged Nostr DM events that will be processed by the pairing system even though they fail signature validation, creating resource consumption through pending pairing entries and relay work.

Root Cause

The root cause is improper ordering of security controls in the Nostr DM ingress handler. The authorizeSender callback was originally invoked before expensive cryptographic operations (signature verification), ostensibly as an optimization to reject unauthorized senders early. However, this created a window where forged messages could trigger pairing state creation before their signatures were validated.

Attack Vector

The attack vector is network-based and requires no authentication. An attacker can craft malicious Nostr DM events with arbitrary content and invalid signatures. When these events reach the OpenClaw instance, the pairing challenge system processes them before signature validation occurs, resulting in:

  1. Creation of pending pairing entries consuming shared capacity
  2. Triggering of pairing-reply attempts to potentially non-existent or attacker-controlled endpoints
  3. Bounded relay and logging work that consumes system resources
typescript
     reply: (text: string) => Promise<void>,
     meta: { eventId: string; createdAt: number },
   ) => Promise<void>;
-  /** Called before expensive crypto to allow sender policy checks (optional) */
+  /** Called after signature verification and before decrypt to allow sender policy checks (optional) */
   authorizeSender?: (params: {
     senderPubkey: string;
     reply: (text: string) => Promise<void>;

Source: GitHub Commit

Detection Methods for CVE-2026-41301

Indicators of Compromise

  • Unusual volume of failed signature verifications in Nostr DM processing logs
  • Rapid accumulation of pending pairing entries from unknown or suspicious public keys
  • Increased relay traffic and logging activity without corresponding successful pairings
  • Pairing capacity exhaustion alerts despite limited legitimate pairing activity

Detection Strategies

  • Monitor Nostr event signature validation failure rates and alert on anomalous spikes
  • Implement rate limiting on pairing entry creation per source public key
  • Track pairing state table growth and establish baseline thresholds for alerting
  • Audit relay connection attempts triggered by pairing replies to identify potential abuse

Monitoring Recommendations

  • Enable verbose logging for the Nostr DM ingress path to capture signature validation results
  • Configure alerts for pairing capacity utilization exceeding normal operational thresholds
  • Monitor system resource consumption metrics (CPU, memory) for the Nostr extension components
  • Establish baseline metrics for legitimate pairing activity to identify deviations

How to Mitigate CVE-2026-41301

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.3.31 or later immediately
  • Review Nostr DM processing logs for evidence of exploitation attempts
  • Clear any suspicious pending pairing entries that may have been created through this vulnerability
  • Consider temporarily disabling Nostr DM pairing functionality if upgrade is not immediately possible

Patch Information

The vulnerability has been addressed in commit 4ee742174f36b5445703e3b1ef2fbd6ae6700fa4. The fix reorders the security control flow to ensure signature verification occurs before any pairing state is created or sender authorization callbacks are invoked. Users should upgrade to OpenClaw version 2026.3.31 or apply the security patch from the GitHub commit. Additional details are available in the GitHub Security Advisory.

Workarounds

  • Implement network-level rate limiting on incoming Nostr DM events until patching is complete
  • Configure firewall rules to restrict Nostr relay connections to trusted sources
  • Monitor and manually clear pairing state tables to prevent capacity exhaustion
  • Disable Nostr DM pairing functionality if it is not critical to operations
bash
# Example: Rate limit Nostr connections using iptables
iptables -A INPUT -p tcp --dport 443 -m connlimit --connlimit-above 20 -j DROP
# Monitor OpenClaw logs for signature verification failures
journalctl -u openclaw -f | grep -i "signature verification"

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.9

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-347
  • Technical References
  • GitHub Commit Changes

  • GitHub Security Advisory

  • VulnCheck Advisory
  • Related CVEs
  • CVE-2026-41909: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-41908: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-41330: OpenClaw Auth Bypass Vulnerability

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