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

CVE-2025-66687: Doom Launcher Path Traversal Vulnerability

CVE-2025-66687 is a path traversal vulnerability in Doom Launcher 3.8.1.0 caused by missing file path validation during game file extraction. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2025-66687 Overview

Doom Launcher 3.8.1.0 is vulnerable to Directory Traversal due to missing file path validation during the extraction of game files. This vulnerability (CWE-22) allows attackers to access files and directories outside the intended extraction path by manipulating file paths with traversal sequences such as ../.

Critical Impact

Attackers can exploit this directory traversal flaw to read sensitive files outside the intended game file directory, potentially exposing configuration files, credentials, or other confidential data on the target system.

Affected Products

  • Doom Launcher version 3.8.1.0

Discovery Timeline

  • 2026-03-16 - CVE CVE-2025-66687 published to NVD
  • 2026-03-17 - Last updated in NVD database

Technical Details for CVE-2025-66687

Vulnerability Analysis

This directory traversal vulnerability exists in Doom Launcher's file extraction functionality. When processing game files, the application fails to properly validate or sanitize file paths before extraction. This allows an attacker to craft malicious archive files containing path traversal sequences that escape the intended extraction directory.

The vulnerability is classified under CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), which occurs when software uses external input to construct a pathname that should be within a restricted directory, but fails to properly neutralize sequences like ../ that can resolve to a location outside of that directory.

Root Cause

The root cause of this vulnerability is the absence of proper input validation and path canonicalization during the game file extraction process in Doom Launcher. When extracting files from archives, the application directly uses the file paths embedded within the archive without verifying that the resulting extraction path remains within the designated output directory. This allows specially crafted archives to write files to arbitrary locations on the filesystem.

Attack Vector

The attack vector for this vulnerability is network-based, requiring no privileges or user interaction. An attacker could distribute a malicious game file archive through community forums, mod repositories, or other channels where Doom players download content. When a victim attempts to extract the malicious archive using Doom Launcher, the embedded traversal sequences cause files to be written or read from locations outside the intended game directory.

A typical exploitation scenario involves crafting an archive containing filenames with path traversal sequences such as ../../sensitive_location/malicious_file. When the vulnerable Doom Launcher extracts this archive, it follows the traversal path literally instead of restricting output to the designated folder.

For detailed technical information regarding this vulnerability, refer to the GitHub Issue Report and the Jeroscope Security Advisory.

Detection Methods for CVE-2025-66687

Indicators of Compromise

  • Unexpected files appearing outside Doom Launcher's game file directories
  • Archive extraction logs showing file paths containing ../ sequences
  • Modified or new files in sensitive system directories following game file extraction operations
  • Suspicious archive files with embedded path traversal sequences in filename entries

Detection Strategies

  • Monitor file system activity during Doom Launcher execution for writes outside expected directories
  • Implement file integrity monitoring on critical system directories
  • Scan downloaded game archives for path traversal sequences before extraction
  • Review Doom Launcher logs for extraction errors or unusual path references

Monitoring Recommendations

  • Enable verbose logging for Doom Launcher file operations if available
  • Deploy endpoint detection solutions to identify directory traversal attack patterns
  • Monitor network traffic for downloads of game archives from untrusted sources
  • Implement SentinelOne's behavioral AI to detect anomalous file system access patterns during application execution

How to Mitigate CVE-2025-66687

Immediate Actions Required

  • Avoid extracting game files or archives from untrusted sources until a patch is available
  • Manually inspect archive contents before extraction using trusted archive tools
  • Run Doom Launcher in a sandboxed environment or with restricted file system permissions
  • Monitor for updates from the Doom Launcher development team

Patch Information

At the time of publication, no official patch information has been released for this vulnerability. Users should monitor the GitHub Issue Report for updates from the Doom Launcher maintainers regarding a security fix.

Workarounds

  • Only download and extract game files from trusted, verified sources
  • Use alternative archive extraction tools that implement path traversal protections before importing files into Doom Launcher
  • Configure file system permissions to restrict Doom Launcher's write access to only its designated directories
  • Consider using application sandboxing solutions to limit the impact of potential exploitation

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechDoom Launcher

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.36%

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

  • Jeroscope Security Advisory
  • Latest CVEs
  • CVE-2025-11419: Keycloak TLS DoS Vulnerability

  • CVE-2025-13947: WebKitGTK Information Disclosure Flaw

  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan 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