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-2025-24888

CVE-2025-24888: SecureDrop Client Path Traversal Flaw

CVE-2025-24888 is a path traversal vulnerability in SecureDrop Client that could allow code execution via malicious file downloads. This article covers the technical details, affected versions, security impact, and mitigation.

Published: April 29, 2026

CVE-2025-24888 Overview

CVE-2025-24888 is a path traversal vulnerability in the SecureDrop Client, a desktop application used by journalists to communicate with sources and work with submissions on the SecureDrop Workstation. This vulnerability allows a malicious SecureDrop Server to achieve code execution on the SecureDrop Client virtual machine (sd-app). The flaw exists in the code responsible for downloading replies, where the filename obtained from the Content-Disposition HTTP header is used to write encrypted reply files to disk without proper path validation before the initial write operation.

Critical Impact

A compromised SecureDrop Server can achieve arbitrary code execution on the SecureDrop Client VM by exploiting improper filename validation during reply downloads, potentially compromising journalist communications and source confidentiality.

Affected Products

  • SecureDrop Client versions prior to 0.14.1
  • SecureDrop Workstation installations using vulnerable client versions
  • Qubes-based SecureDrop deployments with affected sd-app virtual machines

Discovery Timeline

  • 2025-02-13 - CVE CVE-2025-24888 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-24888

Vulnerability Analysis

This vulnerability represents a classic path traversal flaw (CWE-22) that enables remote code execution through an arbitrary file write primitive. The SecureDrop Client application downloads reply files from the SecureDrop Server and uses the filename provided in the HTTP Content-Disposition header to determine where to write the encrypted file on disk.

While the application does implement a safe_move() function that checks for path traversal attempts before moving files to the final storage directory, this validation occurs too late in the process. By the time the path traversal check is performed, the file has already been written to an attacker-controlled location on the filesystem. When safe_move() detects the malicious path and fails, it leaves the original downloaded file in the attacker-specified directory rather than cleaning it up.

An attacker who has compromised a SecureDrop Server can exploit this by crafting a malicious Content-Disposition header containing directory traversal sequences (e.g., ../) to write files outside the intended download directory. Code execution is achieved by writing a malicious autostart file to /home/user/.config/autostart/, which will be executed when the user session starts.

It's important to note that this attack requires prior compromise of the SecureDrop Server itself. A remote attacker posing as a source cannot exploit this vulnerability because filenames are generated and sanitized server-side, and files are transmitted in an encrypted format. The SecureDrop Server has multiple layers of built-in hardening and is only exposed via Tor hidden services.

Root Cause

The root cause of CVE-2025-24888 is insufficient input validation timing in the file download process. The vulnerability exists in the SecureDrop Client SDK's file handling code, where the filename from the Content-Disposition header is directly used to write files to disk without first sanitizing path traversal sequences. The security check implemented in safe_move() is applied only after the file has already been written, creating a time-of-check-time-of-use (TOCTOU) condition. The safe_move() function in utils.py properly detects path traversal attempts but fails to remediate the already-written malicious file, leaving it in place at the attacker-specified location.

Attack Vector

The attack requires network access and a previously compromised SecureDrop Server. An attacker who has gained control of the SecureDrop Server can craft HTTP responses with malicious Content-Disposition headers containing path traversal sequences. When the SecureDrop Client downloads a reply, the attacker-controlled filename causes the encrypted file to be written to an arbitrary location on the sd-app virtual machine filesystem. By targeting the autostart directory at /home/user/.config/autostart/, the attacker can achieve persistent code execution within the isolated VM environment. The attack complexity is considered high due to the prerequisite of server compromise, though no user interaction is required once the server is compromised.

For technical implementation details, refer to the GitHub Security Advisory GHSA-6c3p-chq6-q3j2 and the vulnerable SDK code.

Detection Methods for CVE-2025-24888

Indicators of Compromise

  • Unexpected files appearing in /home/user/.config/autostart/ directory within the sd-app VM
  • Anomalous file write operations outside the standard SecureDrop Client data directories
  • Modified or new .desktop files in user autostart directories with unknown or suspicious commands
  • Log entries showing safe_move() failures with path traversal error messages

Detection Strategies

  • Monitor file system activity in the sd-app virtual machine for writes to sensitive directories like /home/user/.config/autostart/
  • Implement file integrity monitoring (FIM) on the SecureDrop Workstation to detect unauthorized changes to system and user configuration directories
  • Review SecureDrop Client logs for path traversal detection errors from the safe_move() function indicating attempted exploitation
  • Audit downloaded reply filenames in SecureDrop Client logs for suspicious patterns containing ../ or absolute paths

Monitoring Recommendations

  • Configure real-time alerting for any file creation events in the sd-app VM autostart directory
  • Implement network monitoring on the SecureDrop Server to detect potential compromise indicators that could precede client exploitation
  • Regularly audit the integrity of the SecureDrop Server infrastructure as server compromise is a prerequisite for this attack
  • Enable verbose logging on SecureDrop Client installations to capture file operation details for forensic analysis

How to Mitigate CVE-2025-24888

Immediate Actions Required

  • Upgrade SecureDrop Client to version 0.14.1 or later immediately to patch the path traversal vulnerability
  • Review the sd-app virtual machine for any unexpected files in /home/user/.config/autostart/ and remove suspicious entries
  • Audit SecureDrop Server infrastructure for signs of compromise as this attack requires a compromised server
  • Consider rebuilding the sd-app VM from a known-good template if exploitation is suspected

Patch Information

Freedom of the Press Foundation has released version 0.14.1 of the SecureDrop Client which addresses this vulnerability. The fix ensures proper filename sanitization occurs before any file write operations, preventing path traversal attacks. The security patch can be reviewed in the commit log. Organizations should update their SecureDrop Workstation installations following the standard update procedures documented by the SecureDrop project.

Workarounds

  • No official workarounds are available; upgrading to version 0.14.1 is the recommended remediation
  • Temporarily disable reply downloading functionality if immediate patching is not possible, though this significantly impacts SecureDrop usability
  • Implement additional access controls on the autostart directory within the sd-app VM as a defense-in-depth measure
  • Increase monitoring and auditing of the SecureDrop Server to detect compromise attempts before client exploitation can occur
bash
# Verify SecureDrop Client version
# Ensure version is 0.14.1 or later
securedrop-client --version

# Check for suspicious autostart entries in sd-app VM
ls -la /home/user/.config/autostart/

# Review file integrity in critical directories
find /home/user/.config/autostart/ -type f -newer /var/log/securedrop-client.log

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechSecuredrop

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability3.15%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Securedrop Utils Code

  • GitHub Securedrop Downloads Code

  • GitHub Securedrop SDK Code

  • GitHub Securedrop Commit Log

  • GitHub Security Advisory GHSA-6c3p-chq6-q3j2

  • Qubes OS Split GPG Documentation
  • Related CVEs
  • CVE-2026-35465: Freedom SecureDrop Client RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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