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
    • 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-43572

CVE-2026-43572: Openclaw Authorization Bypass Vulnerability

CVE-2026-43572 is an authorization bypass flaw in Openclaw affecting Microsoft Teams SSO integration. Attackers can exploit missing sender allowlist checks to gain unauthorized access. This article covers technical details, affected versions, impact, and mitigation steps.

Published: May 7, 2026

CVE-2026-43572 Overview

CVE-2026-43572 is a missing authorization vulnerability [CWE-862] in OpenClaw versions 2026.4.10 through 2026.4.13. The flaw resides in the Microsoft Teams Single Sign-On (SSO) invoke handler, which fails to enforce sender allowlist checks. Attackers can submit SSO invoke requests that bypass sender authorization, gaining unauthorized access to Teams SSO signin functionality.

The vulnerability is exploitable over the network without authentication or user interaction. OpenClaw addressed the issue in version 2026.4.14 by introducing a unified isInvokeAuthorized function that enforces sender allowlist validation across SSO signin invokes.

Critical Impact

Unauthenticated network attackers can bypass sender allowlist checks in the Microsoft Teams SSO invoke handler, enabling unauthorized access to Teams SSO signin functionality.

Affected Products

  • OpenClaw 2026.4.10 through 2026.4.13 (Node.js distribution)
  • OpenClaw msteams extension monitor handler
  • Microsoft Teams SSO invoke processing component

Discovery Timeline

  • 2026-05-05 - CVE-2026-43572 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-43572

Vulnerability Analysis

The vulnerability stems from incomplete authorization logic in the OpenClaw msteams extension. The handler at extensions/msteams/src/monitor-handler.ts previously applied sender allowlist validation only within isFeedbackInvokeAuthorized. SSO signin invokes were processed through a separate path that did not consult the sender allowlist.

Attackers can craft Microsoft Teams invoke activities targeting the SSO signin endpoint. The handler accepts these requests without verifying whether the sender appears in the configured allowlist. This permits unauthorized parties to interact with the SSO signin flow and trigger authentication-related operations they should not be able to access.

Root Cause

The root cause is a missing authorization check [CWE-862] for one class of invoke activity. The original implementation enforced sender access controls only for feedback invokes. SSO invokes used a different control path that omitted the resolveMSTeamsSenderAccess lookup, leaving the handler open to any sender.

Attack Vector

Exploitation requires sending a crafted Microsoft Teams SSO invoke activity to an OpenClaw deployment exposing the msteams extension. No credentials or user interaction are required. The attacker leverages the network-accessible bot endpoint to deliver the unauthorized invoke.

typescript
// Patch from extensions/msteams/src/monitor-handler.ts
// Refactored authorization helper now applied to all invoke types
-async function isFeedbackInvokeAuthorized(
-  context: MSTeamsTurnContext,
-  deps: MSTeamsMessageHandlerDeps,
-): Promise<boolean> {
+async function isInvokeAuthorized(params: {
+  context: MSTeamsTurnContext;
+  deps: MSTeamsMessageHandlerDeps;
+  deniedLogs: {
+    dm: string;
+    channel: string;
+    group: string;
+  };
+  includeInvokeName?: boolean;
+}): Promise<boolean> {
+  const { context, deps, deniedLogs, includeInvokeName = false } = params;
   const resolved = await resolveMSTeamsSenderAccess({
     cfg: deps.cfg,
     activity: context.activity,

Source: GitHub commit 80b1fa1

Detection Methods for CVE-2026-43572

Indicators of Compromise

  • SSO signin invoke activities from Teams sender identifiers absent from the configured allowlist.
  • Authentication events triggered by SSO invokes without preceding allowlist authorization log entries.
  • Unexpected Teams signin/tokenExchange or signin/verifyState invocations targeting the OpenClaw bot endpoint.

Detection Strategies

  • Inspect OpenClaw application logs for SSO invoke processing records that lack a corresponding resolveMSTeamsSenderAccess decision.
  • Correlate Teams bot activity logs with allowlist configuration to identify senders that should have been denied.
  • Monitor outbound token exchange traffic from OpenClaw to Microsoft identity endpoints for anomalous frequency or unusual sender attribution.

Monitoring Recommendations

  • Enable verbose logging on the msteams extension to capture invoke activity type, sender identity, and authorization outcome.
  • Forward OpenClaw and Teams audit logs to a centralized analytics platform and alert on SSO invokes without allowlist evaluation.
  • Track deployments of OpenClaw versions across the environment to identify hosts running 2026.4.10 through 2026.4.13.

How to Mitigate CVE-2026-43572

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.14 or later, which applies sender allowlist checks to all invoke types.
  • Audit the msteams extension configuration to confirm the sender allowlist is populated and reflects only trusted Teams identities.
  • Review historical Teams SSO signin invoke activity for requests originating from unauthorized senders.

Patch Information

The fix is delivered in OpenClaw 2026.4.14. Commit 80b1fa17bfc3f6a668492f0326ea52f48bb89776 replaces isFeedbackInvokeAuthorized with a generalized isInvokeAuthorized helper that enforces resolveMSTeamsSenderAccess for SSO signin invokes. See the GitHub Security Advisory GHSA-gc9r-867r-j85f and the VulnCheck advisory for full remediation guidance.

Workarounds

  • Restrict network exposure of the OpenClaw msteams bot endpoint to trusted Microsoft Teams infrastructure ranges where feasible.
  • Disable the Microsoft Teams SSO signin feature in OpenClaw configuration until the upgrade can be applied.
  • Apply upstream proxy or gateway rules that drop Teams invoke activities from unrecognized tenant or sender identifiers.
bash
# Upgrade OpenClaw to the patched release
npm install openclaw@2026.4.14

# Verify the installed version
npm list openclaw

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

  • EPSS Probability0.03%

  • 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-862
  • Technical References
  • VulnCheck Advisory on OpenClaw
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-43574: Openclaw Auth Bypass Vulnerability

  • CVE-2026-43571: Openclaw Auth Bypass Vulnerability

  • CVE-2026-43530: Openclaw Auth Bypass Vulnerability

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