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

CVE-2026-26321: OpenClaw Path Traversal Vulnerability

CVE-2026-26321 is a path traversal flaw in OpenClaw's Feishu extension that allows attackers to read local files through manipulated mediaUrl values. This post covers the technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-26321 Overview

CVE-2026-26321 is a Path Traversal vulnerability affecting OpenClaw, a personal AI assistant application. Prior to version 2026.2.14, the Feishu extension in OpenClaw allowed the sendMediaFeishu function to treat attacker-controlled mediaUrl values as local filesystem paths and read them directly. This flaw enables attackers who can influence tool calls—either directly or via prompt injection—to exfiltrate sensitive local files by supplying arbitrary file paths such as /etc/passwd as the mediaUrl parameter.

Critical Impact

Attackers can leverage prompt injection or direct tool call manipulation to read arbitrary files from the local filesystem, potentially exposing sensitive system configurations, credentials, and private data.

Affected Products

  • OpenClaw versions prior to 2026.2.14
  • OpenClaw Feishu extension with sendMediaFeishu functionality

Discovery Timeline

  • 2026-02-19 - CVE-2026-26321 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2026-26321

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as Path Traversal. The core issue stems from the sendMediaFeishu function within the Feishu extension, which fails to properly validate and sanitize user-supplied mediaUrl input before using it to access the local filesystem.

When processing media requests, the vulnerable code path directly interprets the mediaUrl parameter as a filesystem path without enforcing any directory restrictions or path canonicalization. This allows an attacker to supply paths pointing to sensitive system files outside the intended media directory scope.

The attack surface is particularly concerning in the context of an AI assistant, as prompt injection techniques can be used to manipulate tool calls indirectly. An attacker could craft malicious prompts that cause the AI to invoke sendMediaFeishu with arbitrary file paths, effectively turning the AI assistant into a file exfiltration tool.

Root Cause

The root cause of CVE-2026-26321 is the absence of proper input validation and path traversal protections in the sendMediaFeishu function. The code directly consumed the mediaUrl parameter as a local file path without implementing safeguards such as:

  • Path canonicalization to resolve symbolic links and relative path components
  • Directory restriction enforcement to limit file access to authorized directories
  • Input sanitization to reject or neutralize path traversal sequences like ../

Attack Vector

The vulnerability is exploitable over the network, requiring no authentication or user interaction. An attacker can exploit this flaw through the following methods:

  1. Direct Tool Call Manipulation: If an attacker has the ability to directly invoke tool calls in OpenClaw, they can supply malicious file paths in the mediaUrl parameter.

  2. Prompt Injection: By crafting malicious prompts that influence the AI assistant's behavior, attackers can indirectly cause the system to invoke sendMediaFeishu with attacker-controlled paths like /etc/passwd, /etc/shadow, or application configuration files containing secrets.

The exploitation mechanism involves supplying a path such as /etc/passwd as the mediaUrl value. The vulnerable function reads the file contents and potentially returns or transmits them through the Feishu integration, enabling data exfiltration to an attacker-controlled destination.

For detailed technical information about the vulnerability, refer to the GitHub Security Advisory GHSA-8jpq-5h99-ff5r.

Detection Methods for CVE-2026-26321

Indicators of Compromise

  • Unusual file read operations targeting sensitive system files such as /etc/passwd, /etc/shadow, or configuration files containing credentials
  • Feishu extension activity involving local filesystem paths instead of expected media URLs
  • Log entries showing sendMediaFeishu calls with path traversal sequences (../) or absolute paths
  • Unexpected outbound data transfers through the Feishu integration containing system file contents

Detection Strategies

  • Monitor OpenClaw application logs for sendMediaFeishu invocations with suspicious mediaUrl values containing path traversal patterns or references to sensitive files
  • Implement file integrity monitoring on critical system files to detect unauthorized read access
  • Deploy application-level monitoring to detect prompt injection patterns that could trigger malicious tool calls
  • Review network traffic from OpenClaw instances for unusual data exfiltration through the Feishu API

Monitoring Recommendations

  • Enable detailed logging for all Feishu extension operations, particularly the sendMediaFeishu function
  • Implement alerting for any file access attempts outside designated media directories
  • Monitor for anomalous patterns in AI assistant interactions that may indicate prompt injection attempts
  • Establish baseline behavior for legitimate media handling to identify deviations

How to Mitigate CVE-2026-26321

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.14 or newer immediately
  • Review application logs for any evidence of exploitation attempts prior to patching
  • Audit any systems running vulnerable OpenClaw versions for signs of data exfiltration
  • Consider isolating vulnerable instances from sensitive data until patches can be applied

Patch Information

The OpenClaw development team has released version 2026.2.14 which addresses this vulnerability. The fix removes direct local file reads from the sendMediaFeishu code path and routes all media loading operations through hardened helper functions that enforce local-root restrictions.

Patch details are available in the GitHub commit 5b4121d6011a48c71e747e3c18197f180b872c5d. The patched version can be obtained from the GitHub Release v2026.2.14.

Workarounds

  • If immediate upgrade is not possible, disable or restrict access to the Feishu extension until patching can be completed
  • Implement network-level controls to limit outbound connections from OpenClaw instances
  • Apply filesystem permissions to restrict the OpenClaw process from accessing sensitive system files
  • Deploy Web Application Firewall (WAF) rules to filter requests containing path traversal patterns targeting the vulnerable functionality
bash
# Restrict OpenClaw process filesystem access (example using AppArmor profile)
# Add to /etc/apparmor.d/openclaw
deny /etc/passwd r,
deny /etc/shadow r,
deny /etc/** r,
# Allow only designated media directories
/var/lib/openclaw/media/** r,

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 Score7.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Commit Change

  • GitHub Release v2026.2.14

  • GitHub Security Advisory GHSA-8jpq-5h99-ff5r
  • Related CVEs
  • CVE-2026-26329: Openclaw Path Traversal Vulnerability

  • CVE-2026-26972: OpenClaw Path Traversal Vulnerability

  • CVE-2026-27008: Openclaw Path Traversal Vulnerability

  • CVE-2026-25475: OpenClaw Path Traversal 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