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

CVE-2025-64184: Dosage Path Traversal Vulnerability

CVE-2025-64184 is a path traversal flaw in Dosage comic strip downloader that allows attackers to write files outside the target directory. This post covers the technical details, affected versions, impact, and mitigation.

Published: April 15, 2026

CVE-2025-64184 Overview

CVE-2025-64184 is a Path Traversal vulnerability in Dosage, a comic strip downloader and archiver. When downloading comic images in versions 3.1 and below, Dosage constructs target file names from different aspects of the remote comic (page URL, image URL, page content, etc.). While the basename is properly stripped of directory-traversing characters, the file extension is taken from the HTTP Content-Type header without adequate sanitization. This allows a remote attacker (or a Man-in-the-Middle, if the comic is served over HTTP) to write arbitrary files outside the target directory when additional conditions are met.

Critical Impact

Remote attackers can exploit this vulnerability to write arbitrary files outside the intended download directory, potentially leading to code execution or system compromise when combined with other attack vectors.

Affected Products

  • Dosage versions 3.1 and below
  • Any system using Dosage to download comics over HTTP (vulnerable to MITM)
  • Systems where downloaded comics interact with other file-based processes

Discovery Timeline

  • 2025-11-07 - CVE CVE-2025-64184 published to NVD
  • 2025-11-12 - Last updated in NVD database

Technical Details for CVE-2025-64184

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Path Traversal), allowing attackers to write files to arbitrary locations on the filesystem. The core issue lies in how Dosage processes the HTTP Content-Type header when determining the file extension for downloaded comic images.

The application correctly sanitizes the basename component of downloaded files, stripping out directory traversal sequences like ../. However, the file extension parsing logic trusts the Content-Type header from the remote server without applying the same sanitization. An attacker who can control this header—either by hosting a malicious comic server or by performing a Man-in-the-Middle attack on HTTP connections—can inject path traversal sequences into the file extension.

When additional conditions are met (such as having write permissions to sensitive directories or the application running with elevated privileges), this can allow writing arbitrary files outside the intended download directory.

Root Cause

The root cause of this vulnerability is insufficient input validation on the file extension derived from the HTTP Content-Type header. While Dosage developers implemented proper sanitization for the basename portion of file paths, the same defensive measures were not applied to the extension parsing logic. This represents an incomplete security boundary, where only part of the user-controlled input is validated.

The fix in version 3.2 addresses this by applying consistent sanitization to all components that form the final file path, ensuring directory traversal sequences cannot be injected through any input vector.

Attack Vector

The attack requires network access and user interaction (a user must initiate a download from a malicious or compromised comic source). The exploitation scenario involves:

  1. An attacker sets up a malicious comic server or intercepts HTTP traffic via MITM
  2. The attacker crafts a malicious Content-Type header containing path traversal sequences
  3. When Dosage downloads the comic image, it constructs the filename using the malicious extension
  4. The resulting file is written to an attacker-controlled location outside the download directory

The vulnerability manifests in the file extension parsing logic where the HTTP Content-Type header is processed. For technical implementation details, see the GitHub Security Advisory GHSA-4vcx-3pj3-44m7 and the fix commit.

Detection Methods for CVE-2025-64184

Indicators of Compromise

  • Unexpected files appearing outside the Dosage download directory
  • HTTP responses with unusual Content-Type headers containing path separators (/, \, ..)
  • File system modifications in sensitive directories coinciding with Dosage execution
  • Log entries showing file writes to paths outside the configured download location

Detection Strategies

  • Monitor HTTP traffic for Content-Type headers containing directory traversal sequences like ../ or ..\
  • Implement file integrity monitoring on sensitive directories to detect unexpected file creation
  • Review Dosage download logs for anomalous file path patterns
  • Use network intrusion detection rules to flag suspicious Content-Type headers in responses to known Dosage user agents

Monitoring Recommendations

  • Enable file system auditing on systems running Dosage to track file creation events
  • Implement egress filtering and SSL/TLS inspection to detect MITM attempts
  • Deploy SentinelOne agents to monitor for suspicious file system activity indicative of path traversal exploitation
  • Configure alerting for any file writes by Dosage processes outside their designated download directories

How to Mitigate CVE-2025-64184

Immediate Actions Required

  • Upgrade Dosage to version 3.2 or later immediately
  • Avoid downloading comics from untrusted sources until patched
  • Ensure all comic downloads occur over HTTPS to prevent MITM attacks
  • Run Dosage with minimal filesystem permissions to limit impact of potential exploitation

Patch Information

The vulnerability is fixed in Dosage version 3.2. The fix ensures that directory traversal sequences are properly stripped from all components used to construct file paths, including the file extension derived from the HTTP Content-Type header.

Review the official fix at the GitHub commit 336a9684 and consult the GitHub Security Advisory for additional details.

Workarounds

  • Use HTTPS-only comic sources to prevent MITM exploitation scenarios
  • Run Dosage in a sandboxed environment or container with restricted filesystem access
  • Configure download directories with strict permissions that prevent writes outside the intended location
  • Monitor and restrict outbound network connections from Dosage to known-good comic servers only
bash
# Configuration example
# Ensure Dosage runs with restricted filesystem permissions
# Create a dedicated user with limited write access
sudo useradd -r -s /sbin/nologin dosage_user
mkdir -p /var/lib/dosage/downloads
chown dosage_user:dosage_user /var/lib/dosage/downloads
chmod 755 /var/lib/dosage/downloads

# Run Dosage as the restricted user
sudo -u dosage_user dosage --basepath /var/lib/dosage/downloads

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechDosage

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.14%

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

  • GitHub Security Advisory GHSA-4vcx-3pj3-44m7
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer 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