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

CVE-2026-28481: OpenClaw Information Disclosure Flaw

CVE-2026-28481 is an information disclosure vulnerability in OpenClaw that leaks bearer tokens to untrusted domains through the MS Teams attachment downloader. This article covers technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-28481 Overview

OpenClaw versions 2026.1.30 and earlier contain an information disclosure vulnerability in the MS Teams attachment downloader extension. When enabled, the optional extension uses a permissive suffix-based allowlist for host validation. Upon receiving 401 or 403 HTTP responses during attachment downloads, the application automatically retries the request and sends Authorization bearer tokens to untrusted hosts that match the suffix-based allowlist pattern. This enables attackers controlling domains with matching suffixes to intercept and steal authentication tokens.

Critical Impact

Bearer token theft could allow attackers to impersonate users, access sensitive MS Teams data, and potentially pivot to other integrated services using the stolen credentials.

Affected Products

  • OpenClaw versions 2026.1.30 and earlier
  • OpenClaw MS Teams attachment downloader extension (when enabled)

Discovery Timeline

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

Technical Details for CVE-2026-28481

Vulnerability Analysis

This vulnerability is classified under CWE-201 (Insertion of Sensitive Information Into Sent Data). The flaw exists in the MS Teams attachment downloader extension's retry logic for handling failed download attempts. When the downloader receives a 401 (Unauthorized) or 403 (Forbidden) response, it implements a retry mechanism that includes the Authorization bearer token in subsequent requests without properly validating whether the target host is authorized to receive sensitive authentication credentials.

The root issue stems from the allowlist implementation using suffix-based matching rather than strict domain validation. This approach means that any domain ending with an allowlisted suffix (such as microsoft.com) would be considered trusted, allowing malicious domains like attacker-microsoft.com to receive bearer tokens during retry attempts.

Root Cause

The vulnerability originates from insufficient validation in the host authorization logic for authentication retries. The isUrlAllowed function performs suffix-based matching against the configured allowHosts list, but this check was applied identically for both general URL access and authentication credential transmission. The lack of a separate, stricter authAllowHosts validation for bearer token transmission created the security gap.

Attack Vector

An attacker can exploit this vulnerability by:

  1. Registering a domain that ends with an allowlisted suffix (e.g., evil-microsoft.com if microsoft.com is allowlisted)
  2. Hosting a malicious endpoint that returns 401 or 403 responses to trigger the retry mechanism
  3. Convincing a user to interact with a crafted MS Teams attachment link pointing to the attacker's domain
  4. Capturing the bearer token sent during the authentication retry attempt

The attack requires user interaction to access a malicious attachment link and the MS Teams extension must be enabled.

typescript
// Security patch in extensions/msteams/src/attachments/download.ts
// Source: https://github.com/openclaw/openclaw/commit/41cc5bcd4f1d434ad1bbdfa55b56f25025ecbf6b

   isRecord,
   isUrlAllowed,
   normalizeContentType,
+  resolveAuthAllowedHosts,
   resolveAllowedHosts,
 } from "./shared.js";

The patch introduces a new resolveAuthAllowedHosts function to provide separate, stricter validation for hosts that are permitted to receive authentication credentials.

typescript
// Security patch in extensions/msteams/src/attachments/graph.ts
// Source: https://github.com/openclaw/openclaw/commit/41cc5bcd4f1d434ad1bbdfa55b56f25025ecbf6b

   tokenProvider?: MSTeamsAccessTokenProvider;
   maxBytes: number;
   allowHosts?: string[];
+  authAllowHosts?: string[];
   fetchFn?: typeof fetch;
   /** When true, embeds original filename in stored path for later extraction. */
   preserveFilenames?: boolean;

The fix adds a new authAllowHosts configuration parameter, separating general URL access permissions from authentication credential transmission permissions.

Detection Methods for CVE-2026-28481

Indicators of Compromise

  • Outbound HTTP requests containing Authorization headers to domains outside of known Microsoft infrastructure
  • Failed authentication attempts (401/403 responses) followed by retry requests to suspicious domains
  • Bearer tokens transmitted to non-Microsoft domains matching suffix patterns

Detection Strategies

  • Monitor network traffic for Authorization bearer tokens sent to non-standard Microsoft domains
  • Implement logging for MS Teams attachment download retry events and their target URLs
  • Alert on authentication retries where the retry target differs from the original request domain

Monitoring Recommendations

  • Enable verbose logging for the MS Teams attachment downloader extension
  • Review outbound connections from OpenClaw instances for unusual domain patterns
  • Audit the configured allowlist entries and validate they use strict domain matching

How to Mitigate CVE-2026-28481

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.1 or later which contains the security fix
  • Review and restrict the MS Teams attachment downloader allowlist configuration
  • If upgrade is not immediately possible, consider temporarily disabling the MS Teams attachment downloader extension

Patch Information

The vulnerability has been patched in OpenClaw version 2026.2.1. The fix implements a separate authAllowHosts configuration that provides stricter validation specifically for bearer token transmission. Users should update to this version to receive the security fix. For detailed patch information, see the GitHub Security Advisory and the commit reference.

Workarounds

  • Disable the MS Teams attachment downloader extension if not required for operations
  • Implement network-level controls to block outbound bearer token transmission to non-Microsoft domains
  • Configure a restrictive authAllowHosts list after upgrading, limiting authentication credential transmission to strictly verified Microsoft endpoints
bash
# Configuration example - Restricting allowed hosts after patching
# In your OpenClaw configuration, specify strict auth-allowed hosts:
OPENCLAW_MSTEAMS_AUTH_ALLOW_HOSTS="graph.microsoft.com,teams.microsoft.com"
OPENCLAW_MSTEAMS_ALLOW_HOSTS="*.microsoft.com,*.microsoftonline.com"

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechOpenclaw

  • SeverityMEDIUM

  • CVSS Score5.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:A/VC:H/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-201
  • Technical References
  • GitHub Commit Reference

  • GitHub Security Advisory

  • VulnCheck Advisory on Token Leakage
  • Related CVEs
  • CVE-2026-28479: OpenClaw Information Disclosure Flaw

  • CVE-2026-27485: Openclaw Information Disclosure Flaw

  • CVE-2026-27003: OpenClaw Information Disclosure Vulnerability

  • CVE-2026-27004: OpenClaw Information Disclosure Flaw
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