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

CVE-2026-28480: OpenClaw Auth Bypass Vulnerability

CVE-2026-28480 is an authorization bypass vulnerability in OpenClaw where Telegram allowlist matching uses mutable usernames instead of immutable IDs. This post covers technical details, affected versions, and mitigations.

Published: March 6, 2026

CVE-2026-28480 Overview

OpenClaw versions prior to 2026.2.14 contain an authorization bypass vulnerability in the Telegram integration component. The vulnerability stems from the allowlist matching mechanism accepting mutable Telegram usernames instead of immutable numeric sender IDs. This design flaw allows attackers to spoof identities by obtaining recycled usernames, effectively bypassing allowlist restrictions and interacting with bots as unauthorized senders.

Critical Impact

Attackers can bypass Telegram allowlist authorization controls by acquiring recycled usernames previously associated with authorized users, enabling unauthorized access to bot functionality.

Affected Products

  • OpenClaw versions prior to 2026.2.14

Discovery Timeline

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

Technical Details for CVE-2026-28480

Vulnerability Analysis

This authorization bypass vulnerability (CWE-290: Authentication Bypass by Spoofing) exploits a fundamental weakness in how OpenClaw validates Telegram senders against its allowlist. The core issue lies in the authentication mechanism relying on Telegram usernames for identity verification rather than immutable numeric user IDs.

Telegram usernames are inherently mutable—users can change or release their usernames at any time, and released usernames become available for registration by other users after a period. When OpenClaw uses these mutable identifiers for allowlist authorization, it creates a window of opportunity for attackers to assume the identity of previously authorized users.

The impact includes unauthorized access to bot commands and functionality, potential data exfiltration through bot interactions, and the ability to perform actions on behalf of legitimate users within the OpenClaw ecosystem.

Root Cause

The root cause is the use of mutable Telegram usernames as authentication identifiers instead of immutable numeric sender IDs. The original implementation stored and compared usernames in both the allowFrom and groupAllowFrom configuration arrays, which could be spoofed through username recycling. The type definitions previously documented these fields as accepting "user ids or usernames" without enforcing the security requirement for numeric IDs only.

Attack Vector

The attack can be executed remotely over the network without any privileges or user interaction required. An attacker would:

  1. Identify a target OpenClaw bot that uses Telegram username-based allowlisting
  2. Discover or guess usernames that are likely on the allowlist (e.g., common admin usernames)
  3. Monitor for when these usernames become available through Telegram's username recycling mechanism
  4. Register the recycled username on a new or existing Telegram account
  5. Interact with the OpenClaw bot, which validates the spoofed username against its allowlist
typescript
// Security patch in src/telegram/bot-access.ts - fix(telegram): require sender ids for allowlist auth
 
export type NormalizedAllowFrom = {
  entries: string[];
-  entriesLower: string[];
  hasWildcard: boolean;
  hasEntries: boolean;
+  invalidEntries: string[];
};

-export type AllowFromMatch = AllowlistMatch<"wildcard" | "id" | "username">;
+export type AllowFromMatch = AllowlistMatch<"wildcard" | "id">;

+const warnedInvalidEntries = new Set<string>();

+function warnInvalidAllowFromEntries(entries: string[]) {
+  if (process.env.VITEST || process.env.NODE_ENV === "test") {
+    return;
+  }
+  for (const entry of entries) {
+    if (warnedInvalidEntries.has(entry)) {
+      continue;
+    }
+    warnedInvalidEntries.add(entry);
+    console.warn(
+      [
+        "[telegram] Invalid allowFrom entry:",
+        JSON.stringify(entry),
+        "- allowFrom/groupAllowFrom authorization requires numeric Telegram sender IDs only.",
+        'If you had "@username" entries, re-run onboarding (it resolves @username to IDs) or replace them manually.',
+      ].join(" "),

Source: GitHub Commit Update

Detection Methods for CVE-2026-28480

Indicators of Compromise

  • Unexpected bot interactions from users not previously authorized in your organization
  • Configuration files containing @username entries in allowFrom or groupAllowFrom arrays instead of numeric IDs
  • Log entries showing allowlist matches for usernames that were recently changed or recycled

Detection Strategies

  • Review OpenClaw configuration files for non-numeric entries in allowFrom and groupAllowFrom fields
  • Audit bot interaction logs for messages from sender IDs that don't match expected authorized users
  • Implement monitoring for new console warnings containing "Invalid allowFrom entry" after upgrading to patched versions

Monitoring Recommendations

  • Enable verbose logging for Telegram bot authentication events to track allowlist matching behavior
  • Set up alerts for any authorization bypass attempts detected by the patched version's validation warnings
  • Periodically review and validate that all allowlist entries contain only numeric Telegram user IDs

How to Mitigate CVE-2026-28480

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.14 or later immediately
  • Review and update all allowFrom and groupAllowFrom configuration entries to use numeric Telegram user IDs instead of usernames
  • Re-run the OpenClaw onboarding process which now automatically resolves @username entries to immutable numeric IDs

Patch Information

The security patches have been released and are available through the following commits:

  • GitHub Commit Change - Updated type definitions to document numeric ID requirement
  • GitHub Commit Update - Implemented sender ID validation with warnings for invalid entries

Additional details are available in the GitHub Security Advisory and VulnCheck Advisory on Openclaw.

Workarounds

  • Manually convert all username entries to numeric Telegram user IDs in your configuration before patching
  • Use Telegram's API or a Telegram client to look up the numeric user ID for each authorized user
  • Temporarily disable Telegram integration if immediate patching is not possible
typescript
// Configuration example - Updated allowFrom configuration
// Before (vulnerable):
// allowFrom: ["@adminuser", "@trusteduser"]

// After (secure - use numeric Telegram user IDs):
// allowFrom: [123456789, 987654321]

// The onboarding wizard now prompts for proper configuration:
// message: "Telegram allowFrom (numeric sender id; @username resolves to id)"

Source: GitHub Commit Update

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

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/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
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-290
  • Technical References
  • GitHub Commit Change

  • GitHub Commit Update

  • GitHub Security Advisory

  • VulnCheck Advisory on Openclaw
  • Related CVEs
  • CVE-2026-29606: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-28477: OpenClaw OAuth Bypass Vulnerability

  • CVE-2026-28475: OpenClaw Auth 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