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

CVE-2026-28471: OpenClaw Auth Bypass Vulnerability

CVE-2026-28471 is an authentication bypass flaw in OpenClaw with Matrix plugin that allows remote attackers to impersonate allowed identities. This article covers technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-28471 Overview

CVE-2026-28471 is an authentication bypass vulnerability in OpenClaw version 2026.1.14-1 prior to 2026.2.2 when the Matrix plugin is installed and enabled. The vulnerability stems from improper validation of DM (Direct Message) allowlist entries, where the application performs exact-matching against sender display names and localparts without validating the homeserver component. This flaw allows remote Matrix users to impersonate allowed identities by using attacker-controlled display names or matching localparts from different homeservers to reach the routing and agent pipeline.

Critical Impact

Remote attackers can bypass identity verification controls by exploiting insufficient homeserver validation, enabling impersonation of trusted identities and unauthorized access to messaging pipelines.

Affected Products

  • OpenClaw version 2026.1.14-1 to versions prior to 2026.2.2
  • OpenClaw installations with the Matrix plugin installed and enabled
  • Matrix-federated deployments using allowlist-based access controls

Discovery Timeline

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

Technical Details for CVE-2026-28471

Vulnerability Analysis

This authentication bypass vulnerability (CWE-287) exists in the Matrix plugin's allowlist implementation. The core issue lies in how the application normalizes and compares Matrix user identifiers against configured allowlists. Matrix user IDs follow the format @localpart:homeserver, but the vulnerable code only performed case-insensitive matching on the full string or individual components without properly validating that the homeserver portion matches an authorized server.

An attacker on a malicious homeserver could create an account with a localpart matching an authorized user (e.g., @admin on attacker.server vs @admin on trusted.server). The flawed allowlist logic would incorrectly authorize messages from the attacker's account because it matched the localpart without verifying the homeserver domain.

Root Cause

The root cause is the insufficient parsing and validation logic in the normalizeAllowListLower function within extensions/matrix/src/matrix/monitor/allowlist.ts. The original implementation performed a simple case-insensitive lowercase conversion on allowlist entries without properly decomposing Matrix user IDs into their constituent parts (localpart and homeserver) and validating each component separately. This allowed attackers to bypass allowlist controls through homeserver mismatch attacks and display name spoofing.

Attack Vector

The attack can be executed remotely over the network without requiring authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Creating a Matrix account on an attacker-controlled homeserver with a localpart matching an authorized user
  2. Sending direct messages to the vulnerable OpenClaw instance
  3. The flawed allowlist matching would authorize the message based on localpart match alone
  4. The attacker gains access to the routing and agent pipeline as an impersonated trusted identity

Security Patch (extensions/matrix/src/matrix/monitor/allowlist.ts):

typescript
   return (list ?? []).map((entry) => String(entry).trim()).filter(Boolean);
 }
 
-export function normalizeAllowListLower(list?: Array<string | number>) {
-  return normalizeAllowList(list).map((entry) => entry.toLowerCase());
+function normalizeMatrixUser(raw?: string | null): string {
+  const value = (raw ?? "").trim();
+  if (!value) {
+    return "";
+  }
+  if (!value.startsWith("@") || !value.includes(":")) {
+    return value.toLowerCase();
+  }
+  const withoutAt = value.slice(1);
+  const splitIndex = withoutAt.indexOf(":");
+  if (splitIndex === -1) {
+    return value.toLowerCase();
+  }
+  const localpart = withoutAt.slice(0, splitIndex).toLowerCase();
+  const server = withoutAt.slice(splitIndex + 1).toLowerCase();
+  if (!server) {
+    return value.toLowerCase();
+  }
+  return `@${localpart}:${server.toLowerCase()}`;
 }
 
-function normalizeMatrixUser(raw?: string | null): string {
-  return (raw ?? "").trim().toLowerCase();
+export function normalizeMatrixUserId(raw?: string | null): string {
+  const trimmed = (raw ?? "").trim();

Source: GitHub Commit Update

Detection Methods for CVE-2026-28471

Indicators of Compromise

  • Unexpected Matrix direct messages from untrusted or unknown homeservers reaching the agent pipeline
  • Allowlist entries being matched against users from different homeservers than expected
  • Authentication logs showing successful authorization for Matrix IDs with mismatched homeserver components
  • Unusual routing activity from Matrix accounts with display names matching legitimate users

Detection Strategies

  • Audit Matrix plugin logs for messages from homeservers not explicitly configured in the allowlist
  • Implement strict homeserver validation in any custom Matrix integration code
  • Review authorization events to identify pattern matches that bypass full Matrix ID validation
  • Deploy network monitoring to detect federation traffic from suspicious or newly-created homeservers

Monitoring Recommendations

  • Enable verbose logging for the Matrix plugin to capture full sender Matrix IDs including homeserver
  • Monitor for authentication anomalies where localparts match but homeservers differ from authorized servers
  • Set up alerts for direct message activity from homeservers outside your organization's trusted federation list
  • Regularly audit allowlist configurations to ensure entries include full Matrix IDs with homeserver components

How to Mitigate CVE-2026-28471

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.2 or later immediately
  • Review current allowlist configurations and ensure all entries specify full Matrix user IDs with homeserver components
  • Audit recent Matrix plugin activity logs for potential exploitation attempts
  • Consider temporarily disabling the Matrix plugin if immediate patching is not possible

Patch Information

The vulnerability has been addressed in OpenClaw version 2026.2.2. The fix introduces proper Matrix user ID normalization through the normalizeMatrixUserId function, which correctly parses and validates both the localpart and homeserver components of Matrix identifiers. The patch is available via the GitHub Commit Update.

Additional security advisories are available from the GitHub Security Advisory and VulnCheck Advisory on OpenClaw.

Workarounds

  • Ensure all allowlist entries include complete Matrix user IDs in the format @localpart:homeserver
  • Implement additional validation layers at the network or application level to verify homeserver authenticity
  • Restrict Matrix federation to only explicitly trusted homeservers at the infrastructure level
  • Monitor and audit all incoming Matrix direct messages manually until the patch is applied
bash
# Configuration example
# Update OpenClaw to patched version
npm update openclaw@2026.2.2

# Verify Matrix plugin allowlist entries include full Matrix IDs
# Ensure entries follow format: @user:trusted-homeserver.example.com
# Avoid partial entries like just "user" or "@user"

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:L/AT:P/PR:N/UI:N/VC:L/VI:N/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
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-287
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory

  • VulnCheck Advisory on OpenClaw
  • 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-28475: 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