Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2552

CVE-2026-2552: ZenTao Path Traversal Vulnerability

CVE-2026-2552 is a path traversal vulnerability in ZenTao affecting versions up to 21.7.8. Attackers can exploit the delete function in editor/control.php to access unauthorized files. This article covers affected versions, impact, and mitigation.

Published: February 20, 2026

CVE-2026-2552 Overview

A path traversal vulnerability has been identified in ZenTao project management software versions up to 21.7.8. The vulnerability exists within the delete function of the editor/control.php file in the Committer component. An attacker can manipulate the filePath argument to traverse directories and potentially access or delete files outside the intended directory structure.

Critical Impact

Authenticated attackers on adjacent networks can exploit this path traversal flaw to read, modify, or delete arbitrary files on the ZenTao server, potentially compromising sensitive project data and system integrity.

Affected Products

  • ZenTao versions up to 21.7.8
  • ZenTao Committer component (editor/control.php)

Discovery Timeline

  • February 16, 2026 - CVE-2026-2552 published to NVD
  • February 18, 2026 - Last updated in NVD database

Technical Details for CVE-2026-2552

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as path traversal. The flaw resides in the file editor functionality within ZenTao's Committer component. When processing file deletion requests, the delete function in editor/control.php fails to properly sanitize the filePath parameter, allowing attackers to inject directory traversal sequences such as ../ to escape the intended directory.

The vulnerability requires adjacent network access and low-privilege authentication, meaning an attacker must be positioned on the same network segment and possess valid credentials to exploit this flaw. Successful exploitation can result in limited confidentiality, integrity, and availability impacts on the vulnerable system.

Root Cause

The root cause of this vulnerability is insufficient input validation and sanitization of the filePath argument passed to the delete function. The application fails to properly canonicalize the path or validate that the requested file resides within an allowed directory before performing file operations. This allows path traversal sequences to be processed, enabling access to files outside the designated editor workspace.

Attack Vector

The attack requires adjacent network positioning, meaning the attacker must be on the same local network as the ZenTao server. With low-privilege authentication to the ZenTao application, an attacker can craft a malicious request to the editor/control.php delete endpoint with a manipulated filePath parameter containing directory traversal sequences. This can allow the attacker to delete sensitive configuration files, application data, or potentially access files that reveal system information.

The exploitation does not require user interaction and can be performed directly through API calls or manipulated HTTP requests to the vulnerable endpoint. For detailed technical analysis, see the GitHub Issue Discussion.

Detection Methods for CVE-2026-2552

Indicators of Compromise

  • HTTP requests to editor/control.php containing path traversal patterns such as ../, ..%2f, or ..%5c in the filePath parameter
  • Unexpected file deletions or modifications outside the ZenTao application directory
  • Access logs showing repeated requests to the editor delete endpoint with suspicious path patterns
  • System logs indicating file operations in sensitive directories originating from the web application user

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing directory traversal sequences targeting ZenTao endpoints
  • Configure intrusion detection systems (IDS) to alert on HTTP requests with ../ patterns directed at editor/control.php
  • Monitor application logs for requests to the Committer component with anomalous filePath values
  • Deploy file integrity monitoring on critical system and application directories to detect unauthorized changes

Monitoring Recommendations

  • Enable detailed access logging for the ZenTao application to capture all parameters passed to the editor component
  • Set up alerts for file system operations outside normal ZenTao data directories
  • Monitor for authentication failures followed by successful access to the editor functionality, which may indicate credential-based attacks

How to Mitigate CVE-2026-2552

Immediate Actions Required

  • Upgrade ZenTao to version 21.7.9 or later, which contains the fix for this vulnerability
  • Restrict network access to the ZenTao server to trusted IP ranges or VPN-only access to reduce adjacent network attack surface
  • Review application logs for evidence of exploitation attempts targeting editor/control.php
  • Implement WAF rules to block path traversal patterns while awaiting patch deployment

Patch Information

The vulnerability has been addressed in ZenTao version 21.7.9. Administrators should upgrade to this version or later to remediate the path traversal vulnerability. The patch properly validates and sanitizes the filePath argument to prevent directory traversal attacks.

For additional details on this vulnerability, refer to the VulDB entry #346161 and the GitHub Issue Discussion.

Workarounds

  • If immediate patching is not possible, consider disabling the Committer/Editor functionality until the patch can be applied
  • Implement strict network segmentation to limit adjacent network access to the ZenTao server
  • Deploy application-layer filtering to reject requests containing path traversal sequences in the filePath parameter
  • Apply file system permissions to restrict the web application user from accessing sensitive directories outside the ZenTao installation

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechZentao

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:A/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Issue Discussion

  • GitHub Comment on Issue

  • VulDB #346161 Details

  • VulDB #346161

  • VulDB Submission #749985
  • Related CVEs
  • CVE-2025-50857: ZenTaoPMS Path Traversal Vulnerability

  • CVE-2026-2551: ZenTao Path Traversal Vulnerability

  • CVE-2026-1884: ZenTao Webhook Module SSRF 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