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

CVE-2026-26058: Zulip Path Traversal Vulnerability

CVE-2026-26058 is a path traversal flaw in Zulip that allows attackers to read arbitrary server files through crafted export tarballs. This article covers the technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-26058 Overview

CVE-2026-26058 is a path traversal vulnerability affecting Zulip, an open-source team collaboration tool. The vulnerability exists in the ./manage.py import command, which reads arbitrary files from the server filesystem via path traversal sequences in the uploads/records.json file. When processing a crafted export tarball, the server copies any file readable by the zulip user into the uploads directory during the import process.

Critical Impact

Attackers can craft malicious export tarballs to exfiltrate sensitive server files, potentially exposing configuration files, credentials, and other confidential data accessible to the zulip service account.

Affected Products

  • Zulip versions 1.4.0 through 11.5.x
  • Zulip Server installations using the import functionality
  • Self-hosted Zulip deployments processing untrusted export archives

Discovery Timeline

  • 2026-04-03 - CVE-2026-26058 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-26058

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Path Traversal). The root issue lies in the Zulip import functionality's handling of file paths specified in the uploads/records.json manifest file within export tarballs. When importing data, the application fails to properly validate and sanitize file paths, allowing directory traversal sequences such as ../ to escape the intended directory structure.

The attack requires local access to submit a crafted export tarball and user interaction to trigger the import process. Upon successful exploitation, an attacker can achieve high confidentiality impact by accessing sensitive files, with limited integrity impact through file manipulation in the uploads directory. The vulnerability does not directly impact system availability.

Root Cause

The vulnerability stems from insufficient input validation in the file path handling logic within the import functionality. The uploads/records.json file, which contains references to uploaded files that should be restored during import, does not properly sanitize path components. This allows path traversal sequences to be interpreted literally, enabling access to files outside the intended upload directory.

Attack Vector

An attacker must craft a malicious export tarball containing a specially modified uploads/records.json file. This manifest file would include path traversal sequences (e.g., ../../etc/passwd or similar paths) pointing to sensitive server files. When an administrator or privileged user executes the import command on this tarball, the server follows these traversal paths and copies the targeted files into the uploads directory, making them accessible to the attacker.

The attack requires local access to provide the malicious tarball and depends on user interaction to trigger the import operation. Sensitive targets could include configuration files containing database credentials, API keys, TLS private keys, or other secrets accessible to the zulip service account.

Detection Methods for CVE-2026-26058

Indicators of Compromise

  • Unusual file access patterns by the zulip user to sensitive system directories
  • Unexpected files appearing in the Zulip uploads directory, particularly configuration files or system files
  • Import operations processing export archives from untrusted sources
  • Log entries showing file operations accessing paths outside the expected import directories

Detection Strategies

  • Monitor file system access by the zulip service account for reads outside typical application directories
  • Review import operation logs for path traversal patterns such as ../ sequences
  • Implement file integrity monitoring on the uploads directory to detect anomalous files
  • Alert on import operations that reference files in system directories like /etc/, /var/, or similar

Monitoring Recommendations

  • Enable enhanced logging for the ./manage.py import functionality
  • Implement audit logging for all file operations performed during import
  • Monitor for exports originating from or tarballs provided by untrusted sources
  • Establish baseline behavior for import operations to detect anomalies

How to Mitigate CVE-2026-26058

Immediate Actions Required

  • Upgrade to Zulip version 11.6 or later immediately
  • Audit recent import operations for suspicious activity or unexpected files in uploads
  • Restrict access to the import functionality to trusted administrators only
  • Review the uploads directory for any unexpected or suspicious files
  • Verify the source of any export tarballs before processing

Patch Information

The vulnerability has been patched in Zulip version 11.6. The fix addresses the path traversal issue by implementing proper validation and sanitization of file paths in the uploads/records.json processing logic. For detailed patch information, refer to the GitHub Commit Update and the GitHub Security Advisory.

Workarounds

  • Only process export tarballs from trusted and verified sources
  • Manually inspect uploads/records.json files for path traversal sequences before import
  • Run the zulip service with minimal file system permissions where possible
  • Implement network segmentation to limit access to sensitive files if the service is compromised

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechZulip

  • SeverityMEDIUM

  • CVSS Score6.1

  • EPSS Probability0.01%

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-25742: Zulip Information Disclosure Vulnerability

  • CVE-2026-25741: Zulip Authentication Bypass Vulnerability

  • CVE-2026-24050: Zulip Stored XSS Vulnerability

  • CVE-2025-31478: Zulip Server 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