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

CVE-2026-33645: Fireshare Path Traversal Vulnerability

CVE-2026-33645 is a path traversal vulnerability in Fireshare v1.5.1 that lets authenticated attackers write files outside upload directories. This article covers the technical details, affected versions, and mitigation.

Published: March 26, 2026

CVE-2026-33645 Overview

CVE-2026-33645 is an authenticated path traversal vulnerability discovered in Fireshare, a self-hosted media and link sharing application. The flaw exists in Fireshare's chunked upload endpoint where the checkSum multipart field is used directly in filesystem path construction without proper sanitization or containment checks. This vulnerability allows authenticated attackers to write arbitrary files outside the intended upload directory to any path writable by the Fireshare process.

Critical Impact

Authenticated attackers can write arbitrary files to attacker-controlled paths, violating system integrity and potentially enabling follow-on attacks such as remote code execution depending on deployment configuration.

Affected Products

  • Fireshare version 1.5.1
  • Fireshare versions prior to 1.5.2

Discovery Timeline

  • 2026-03-26 - CVE CVE-2026-33645 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33645

Vulnerability Analysis

This path traversal vulnerability (CWE-22) stems from improper input validation in the chunked upload functionality of Fireshare. The application fails to sanitize user-supplied input from the checkSum multipart field before incorporating it into filesystem paths. An authenticated user can exploit this flaw to escape the intended upload directory and write files to arbitrary locations accessible by the Fireshare process.

The vulnerability requires authentication to exploit but does not require elevated privileges beyond a standard user account. When successfully exploited in containerized deployments, attackers can write to locations such as /tmp or other writable directories, potentially overwriting configuration files, planting malicious scripts, or staging additional attack payloads.

Root Cause

The root cause of this vulnerability is the direct use of the checkSum multipart field in filesystem path construction without implementing proper path canonicalization, sanitization, or directory containment checks. The application trusts user-supplied input for path operations, allowing directory traversal sequences (such as ../) to escape the intended upload boundary.

Attack Vector

The attack is conducted over the network and requires the attacker to have valid authentication credentials for the Fireshare application. Once authenticated, the attacker crafts a malicious chunked upload request with a specially crafted checkSum value containing path traversal sequences. The server processes this request and writes the uploaded content to the attacker-specified location rather than the intended upload directory.

The specific attack flow involves:

  1. Authenticating to the Fireshare application with valid credentials
  2. Initiating a chunked file upload to the vulnerable endpoint
  3. Including directory traversal sequences in the checkSum multipart field
  4. The server constructs the file path using the unsanitized checkSum value
  5. The uploaded file content is written to the attacker-controlled destination path

The impact primarily affects integrity by allowing unauthorized file writes. Depending on the deployment environment and permissions, this could lead to configuration manipulation, web shell deployment, or other follow-on attacks.

Detection Methods for CVE-2026-33645

Indicators of Compromise

  • Unexpected file creation or modification in directories outside the Fireshare upload folder
  • HTTP requests to chunked upload endpoints containing path traversal sequences (../, ..%2f, ..%252f)
  • Anomalous files appearing in container directories such as /tmp or application configuration directories
  • Web server logs showing multipart upload requests with suspicious checkSum parameter values

Detection Strategies

  • Monitor file system activity for writes originating from the Fireshare process to locations outside designated upload directories
  • Implement web application firewall (WAF) rules to detect and block path traversal patterns in multipart form fields
  • Review application logs for chunked upload requests with unusually long or suspicious checkSum values
  • Deploy file integrity monitoring on critical system directories and configuration files

Monitoring Recommendations

  • Enable detailed logging for all file upload operations in Fireshare
  • Configure alerts for file creation events in sensitive directories triggered by the Fireshare process
  • Implement network-based detection for HTTP requests containing encoded or plain-text path traversal sequences
  • Regularly audit file system permissions to ensure the Fireshare process has minimal write access

How to Mitigate CVE-2026-33645

Immediate Actions Required

  • Upgrade Fireshare to version 1.5.2 or later immediately
  • Audit file systems for any unauthorized files that may have been written via this vulnerability
  • Review access logs to identify any potential exploitation attempts
  • Restrict file system permissions for the Fireshare process to minimize writable directories

Patch Information

The vulnerability is fixed in Fireshare version 1.5.2. Users should upgrade to this version or later to remediate the vulnerability. The patch implements proper input validation and path containment checks for the checkSum field in the chunked upload endpoint.

For detailed patch information, refer to the GitHub Fireshare Release v1.5.2 and the GitHub Security Advisory GHSA-7q8r-vpq3-89m7.

Workarounds

  • If immediate patching is not possible, consider restricting network access to the Fireshare application to trusted users only
  • Deploy the application in a containerized environment with read-only file systems where possible
  • Implement a reverse proxy or WAF rule to filter requests containing path traversal patterns in multipart fields
  • Limit the Fireshare process permissions to reduce the impact of unauthorized file writes

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechFireshare

  • SeverityHIGH

  • CVSS Score7.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Fireshare Release v1.5.2

  • GitHub Security Advisory GHSA-7q8r-vpq3-89m7
  • Related CVEs
  • CVE-2026-34745: Fireshare 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