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

CVE-2026-31991: Openclaw Authorization Bypass Vulnerability

CVE-2026-31991 is an authorization bypass flaw in Openclaw that allows attackers to exploit Signal group allowlist policies and gain unauthorized group access. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-31991 Overview

OpenClaw versions prior to 2026.2.26 contain an authorization bypass vulnerability where Signal group allowlist policy incorrectly accepts sender identities from DM pairing-store approvals. Attackers can exploit this boundary weakness by obtaining DM pairing approval to bypass group allowlist checks and gain unauthorized group access.

Critical Impact

Attackers who obtain DM pairing approval can leverage it to bypass group allowlist authorization controls, potentially gaining unauthorized access to protected group channels and resources.

Affected Products

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

Discovery Timeline

  • 2026-03-19 - CVE-2026-31991 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-31991

Vulnerability Analysis

This authorization bypass vulnerability (CWE-863: Incorrect Authorization) affects OpenClaw's Signal group allowlist implementation. The core issue stems from improper boundary enforcement between direct message (DM) authentication contexts and group channel authorization contexts. When the system processes sender identities, it fails to distinguish between identities approved through the DM pairing-store mechanism and those explicitly authorized for group access via the allowlist policy.

The vulnerability allows an attacker who has been approved for DM interactions to leverage that approval to bypass group allowlist restrictions. This represents a classic authentication context confusion where credentials valid in one domain (direct messages) are incorrectly accepted in another domain (group channels) where they should not have authority.

Root Cause

The root cause lies in the improper merging of allowlist sources between DM and group authorization contexts. The original implementation used a function called mergeAllowFromSources that combined both DM pairing-store approvals and group allowlist entries without proper context separation. This caused sender identities approved through the DM pairing mechanism to leak into group authorization checks.

The vulnerability specifically affects the effectiveAllowFrom calculation, where DM pairing approvals were incorrectly included when evaluating group channel access. The fix introduces explicit separation by renaming the function to mergeDmAllowFromSources and implementing resolveEffectiveAllowFromLists to properly segregate authorization contexts.

Attack Vector

The attack exploits the network-accessible authorization boundary between DM and group contexts. An attacker must first obtain legitimate DM pairing approval with a target account. Once approved for direct message interactions, the attacker can then attempt to access group channels that should be restricted by the allowlist policy. Due to the improper boundary enforcement, the DM approval is incorrectly recognized as valid group authorization, granting the attacker unauthorized group access.

The attack requires user interaction (target must approve DM pairing) and authenticated access (attacker needs valid credentials for initial DM request), which limits the exploitation scope but still represents a significant authorization bypass when successfully executed.

typescript
// Security patch - Enforcing explicit group auth boundaries
// Source: https://github.com/openclaw/openclaw/commit/64de4b6d6ae81e269ceb4ca16f53cda99ced967a

 
   const dmPolicy = account.config.dmPolicy ?? "pairing";
   const groupPolicy = account.config.groupPolicy ?? "allowlist";
+  const configuredAllowFrom = (account.config.allowFrom ?? []).map((entry) => String(entry));
   const storeAllowFrom = await readStoreAllowFromForDmPolicy({
     provider: "bluebubbles",
     dmPolicy,
typescript
// Security patch - Separating DM and group command authorization
// Source: https://github.com/openclaw/openclaw/commit/64de4b6d6ae81e269ceb4ca16f53cda99ced967a

     const hasControlCommand = core.channel.text.hasControlCommand(rawText, cfg);
     const isControlCommand = allowTextCommands && hasControlCommand;
     const useAccessGroups = cfg.commands?.useAccessGroups !== false;
+    const commandDmAllowFrom = kind === "direct" ? effectiveAllowFrom : normalizedAllowFrom;
     const senderAllowedForCommands = isMattermostSenderAllowed({
       senderId,
       senderName,
-      allowFrom: effectiveAllowFrom,
+      allowFrom: commandDmAllowFrom,
       allowNameMatching,
     });
     const groupAllowedForCommands = isMattermostSenderAllowed({
typescript
// Security patch - Renaming function to clarify DM-specific scope
// Source: https://github.com/openclaw/openclaw/commit/8bdda7a651c21e98faccdbbd73081e79cffe8be0

-export function mergeAllowFromSources(params: {
+export function mergeDmAllowFromSources(params: {
   allowFrom?: Array<string | number>;
-  storeAllowFrom?: string[];
+  storeAllowFrom?: Array<string | number>;
   dmPolicy?: string;
 }): string[] {
   const storeEntries = params.dmPolicy === "allowlist" ? [] : (params.storeAllowFrom ?? []);

Detection Methods for CVE-2026-31991

Indicators of Compromise

  • Unusual group channel access by users who have only been approved for DM pairing
  • Authorization logs showing group access granted without explicit allowlist entry
  • Discrepancies between DM pairing store entries and group allowlist configurations
  • Unexpected sender identities appearing in group channel audit logs

Detection Strategies

  • Monitor authorization decision logs for group access events where the granting mechanism references DM pairing-store
  • Implement correlation rules to detect users accessing group channels who are present in DM pairing stores but absent from group allowlists
  • Review access patterns for users who recently received DM pairing approval and subsequently accessed restricted groups
  • Deploy application-level logging to track the authorization path taken for each group access decision

Monitoring Recommendations

  • Enable verbose logging for OpenClaw's authorization subsystem, particularly around allowlist policy evaluation
  • Set up alerts for group access events that occur within a short timeframe after DM pairing approval
  • Periodically audit the overlap between DM pairing-store entries and group allowlist configurations
  • Monitor for access attempts to sensitive group channels from senders with limited authorization scope

How to Mitigate CVE-2026-31991

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.26 or later immediately
  • Review group allowlist configurations to ensure only intended senders are authorized
  • Audit recent group access logs for potential exploitation of this vulnerability
  • Consider temporarily restricting group access to explicitly configured allowlists while patching

Patch Information

The vendor has released patches addressing this vulnerability. The fixes enforce explicit group authorization boundaries by separating DM pairing-store approvals from group allowlist evaluations. Key patches include:

  • GitHub Commit 64de4b6 - Enforces explicit group auth boundaries across channels
  • GitHub Commit 8bdda7a - Keeps DM pairing allowlists out of group auth

For complete details, refer to the GitHub Security Advisory GHSA-wm8r-w8pf-2v6w.

Workarounds

  • Configure groupPolicy to use strict allowlist mode and explicitly define authorized senders
  • Disable the DM pairing-store feature temporarily if not critical to operations
  • Implement network-level controls to restrict group channel access to known trusted sources
  • Use separate OpenClaw instances for DM and group channel operations to enforce boundary isolation
bash
# Configuration example - Enforce strict group allowlist policy
# In your OpenClaw configuration file (config.yaml or environment):

# Explicitly set group policy to strict allowlist mode
OPENCLAW_GROUP_POLICY="allowlist"

# Define explicit allowlist entries for group access (comma-separated)
OPENCLAW_GROUP_ALLOWFROM="user1@example.com,user2@example.com,trusted-service-id"

# Ensure DM policy does not automatically approve group access
OPENCLAW_DM_POLICY="pairing"

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

  • SeverityLOW

  • CVSS Score2.0

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:L/UI:A/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • VulnCheck Advisory
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Update

  • 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