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

CVE-2026-43533: OpenClaw Path Traversal Vulnerability

CVE-2026-43533 is a path traversal vulnerability in OpenClaw that allows attackers to read arbitrary files through malicious QQBot media tags. This article covers technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43533 Overview

CVE-2026-43533 is an arbitrary file read vulnerability affecting OpenClaw versions before 2026.4.10. The flaw resides in the QQBot extension's media tag handling, where outbound media processing fails to enforce a storage boundary. Attackers can craft reply text containing media tags that reference host-local file paths outside the intended media storage directory. The QQBot framework then reads those files and transmits their contents through the outbound media channel, disclosing arbitrary local files to remote recipients. The weakness is classified as relative path traversal [CWE-23] and is exploitable over the network without authentication or user interaction.

Critical Impact

Unauthenticated remote attackers can read arbitrary files on the host running OpenClaw, including configuration files, credentials, and bot tokens.

Affected Products

  • OpenClaw (Node.js distribution) versions prior to 2026.4.10
  • OpenClaw QQBot extension (extensions/qqbot/index.ts)
  • Deployments exposing QQBot reply handling to untrusted message senders

Discovery Timeline

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

Technical Details for CVE-2026-43533

Vulnerability Analysis

The vulnerability exists in the QQBot extension that ships with OpenClaw. The extension parses media tags inside reply text and resolves each tag to a local file path before forwarding the resource through QQ's outbound media APIs. The path resolver does not constrain the resulting path to the configured media storage directory. As a result, sequences such as ../ or absolute paths inside a media tag escape the intended boundary and resolve to arbitrary files on the host. The bot then reads those files and uploads them as outbound media, returning their contents to the attacker.

Root Cause

The root cause is missing path canonicalization and boundary enforcement on file references derived from attacker-controlled message content. The outbound media handler trusted the resolved path without verifying it remained within the media storage root. The fix introduces an explicit SendDocumentOptions type with an allowQQBotDataDownloads flag and centralizes the boundary check so that all outbound local file paths are validated before being read.

Attack Vector

An attacker sends a QQ message that triggers a bot reply containing a crafted media tag referencing a host-local path such as /etc/passwd or an application configuration file. When the bot composes its outbound reply, the QQBot extension resolves the tag, reads the targeted file, and uploads it as media to the conversation channel the attacker controls. No authentication, privilege, or user interaction is required.

typescript
// Patch excerpt: extensions/qqbot/index.ts
// fix(qqbot): enforce media storage boundary for all outbound local file paths
  account: QQBotAccount;
  logPrefix: string;
};
+type SendDocumentOptions = {
+  allowQQBotDataDownloads?: boolean;
+};

type QQBotFrameworkCommandResult =
  | string

Source: GitHub commit 604777e. The patch introduces an explicit options type that gates whether local files outside the media storage root may be sent, and adds validation before any outbound file read.

Detection Methods for CVE-2026-43533

Indicators of Compromise

  • Outbound QQBot media uploads referencing files outside the configured media storage directory.
  • Reply text or message logs containing media tags with .., absolute paths, or references to system paths such as /etc, /proc, or application config directories.
  • Unexpected reads of sensitive files (.env, config.json, private keys) by the OpenClaw process.

Detection Strategies

  • Inspect QQBot reply logs for media tags whose resolved paths escape the configured media root.
  • Monitor the OpenClaw process for open()/readFile() syscalls targeting paths outside its expected working directories.
  • Alert on outbound media transmissions whose byte signatures match server-side configuration files or credential stores.

Monitoring Recommendations

  • Enable verbose logging in the QQBot extension to record every resolved file path before transmission.
  • Forward OpenClaw application logs and host filesystem audit events into a centralized analytics platform for correlation.
  • Track the OpenClaw release version in asset inventories and flag any host running a build older than 2026.4.10.

How to Mitigate CVE-2026-43533

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.10 or later, which contains commit 604777e.
  • Audit recent QQBot conversation logs for media tags containing path traversal sequences or absolute paths.
  • Rotate any secrets, tokens, or credentials stored on hosts running vulnerable OpenClaw builds, since they may have been disclosed.

Patch Information

The upstream fix is published in the OpenClaw GitHub Security Advisory GHSA-66r7-m7xm-v49h and delivered in commit 604777e. Additional technical context is available in the VulnCheck advisory. The patch enforces the media storage boundary for every outbound local file path and introduces an opt-in allowQQBotDataDownloads flag for callers that legitimately need broader access.

Workarounds

  • Disable the QQBot extension until the host is upgraded to 2026.4.10 or later.
  • Restrict the OpenClaw process with filesystem isolation, for example by running it under a dedicated user with read access limited to the media storage directory.
  • Place the OpenClaw service inside a container or chroot that excludes sensitive host paths from its mount namespace.
bash
# Verify the installed OpenClaw version and upgrade if vulnerable
npm ls openclaw
npm install openclaw@">=2026.4.10"

# Optional: run OpenClaw with a restricted filesystem view via systemd
# /etc/systemd/system/openclaw.service.d/override.conf
[Service]
ProtectSystem=strict
ProtectHome=true
ReadWritePaths=/var/lib/openclaw/media

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechOpenclaw

  • SeverityHIGH

  • CVSS Score8.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:N/VA:N/SC:H/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-23
  • Technical References
  • VulnCheck Advisory
  • Vendor Resources
  • GitHub Commit Change

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-43570: Openclaw Path Traversal Vulnerability

  • CVE-2026-43567: OpenClaw Path Traversal Vulnerability

  • CVE-2026-44111: OpenClaw Path Traversal Vulnerability

  • CVE-2026-42424: Openclaw Path Traversal 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