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

CVE-2025-30248: WD Discovery DLL Hijacking Vulnerability

CVE-2025-30248 is a DLL hijacking flaw in Western Digital WD Discovery 5.2.730 that allows local attackers to execute arbitrary code. This post covers the technical details, affected versions, security impact, and mitigation.

Published: January 30, 2026

CVE-2025-30248 Overview

CVE-2025-30248 is a DLL hijacking vulnerability affecting the WD Discovery Installer in Western Digital WD Discovery version 5.2.730 on Windows systems. This vulnerability allows a local attacker to execute arbitrary code by placing a specially crafted DLL file in the installer's search path. When the installer executes, it inadvertently loads the malicious DLL instead of the legitimate library, enabling the attacker to run arbitrary code with the privileges of the installing user.

Critical Impact

Local attackers can achieve arbitrary code execution by exploiting the insecure DLL search order in the WD Discovery installer, potentially leading to full system compromise if the installer is run with elevated privileges.

Affected Products

  • Western Digital WD Discovery version 5.2.730 on Windows

Discovery Timeline

  • 2026-01-26 - CVE-2025-30248 published to NVD
  • 2026-01-27 - Last updated in NVD database

Technical Details for CVE-2025-30248

Vulnerability Analysis

This vulnerability is classified as CWE-427 (Uncontrolled Search Path Element), commonly known as DLL hijacking. The WD Discovery installer fails to properly specify the full path for certain DLL dependencies, relying instead on the Windows DLL search order. This insecure behavior allows an attacker to place a malicious DLL with a specific name in a directory that is searched before the legitimate DLL location.

When a user executes the vulnerable installer, Windows follows its standard DLL search order, which typically includes the application's directory, the system directories, and directories listed in the PATH environment variable. If an attacker can place a crafted DLL in any of these locations that is searched before the legitimate DLL, the malicious code will be loaded and executed.

Root Cause

The root cause of this vulnerability lies in the installer's failure to use absolute paths when loading DLL dependencies. By not explicitly specifying the full path to required DLLs, the application becomes susceptible to DLL preloading attacks. The installer relies on the default Windows DLL search mechanism, which can be manipulated by placing malicious DLLs in writable locations that are searched early in the process.

Attack Vector

The attack requires local access to the target system. An attacker must be able to write a crafted DLL file to a location within the installer's search path before the victim executes the WD Discovery installer.

The typical attack scenario involves:

  1. The attacker identifies which DLLs the installer attempts to load
  2. The attacker creates a malicious DLL with the same name as one of the missing or vulnerable dependencies
  3. The malicious DLL is placed in a directory within the search path (such as the Downloads folder where the installer may be located)
  4. When a user runs the installer, the malicious DLL is loaded instead of the legitimate library
  5. The attacker's code executes with the same privileges as the installer process

This vulnerability is particularly dangerous when users run installers from download directories without moving them to a secure location first, as attackers may be able to pre-populate these directories with malicious DLLs.

Detection Methods for CVE-2025-30248

Indicators of Compromise

  • Unexpected DLL files present in the same directory as the WD Discovery installer
  • DLL files with names matching common Windows libraries located in user-writable directories
  • Process execution logs showing unusual DLL loading patterns during WD Discovery installation
  • Anomalous child processes spawned by the WD Discovery installer

Detection Strategies

  • Monitor file system activity for DLL files being created in directories commonly used for downloads or temporary files
  • Implement application whitelisting to prevent unauthorized DLLs from being loaded
  • Deploy endpoint detection and response (EDR) solutions that can identify DLL hijacking attempts
  • Analyze process creation events for installers loading DLLs from unexpected locations

Monitoring Recommendations

  • Enable detailed logging for DLL load events using Windows Event Logs or Sysmon
  • Monitor user download directories for suspicious DLL files
  • Configure alerts for DLL files created in the same directory as installer executables
  • Review process execution chains involving the WD Discovery installer for anomalies

How to Mitigate CVE-2025-30248

Immediate Actions Required

  • Update Western Digital WD Discovery to version 5.3 or later, which addresses this vulnerability
  • Review the Western Digital Security Advisory for official guidance
  • Move installer files to a dedicated, controlled directory before execution
  • Verify the integrity of the installer and ensure no unexpected DLL files are present in the same directory

Patch Information

Western Digital has released WD Discovery Desktop App version 5.3 to address this vulnerability. Users should download the updated installer directly from the official Western Digital website to ensure they receive the patched version. The security advisory is available at the Western Digital Product Security page.

Workarounds

  • Run the installer from a clean, dedicated directory that does not contain any unexpected DLL files
  • Verify the contents of the installation directory before executing the installer
  • Use application control solutions to restrict DLL loading to trusted locations
  • Execute the installer from a non-writable location or with restricted permissions where possible
bash
# Example: Create a clean directory and run the installer from there
mkdir C:\SecureInstall
copy "C:\Users\%USERNAME%\Downloads\WDDiscoverySetup.exe" C:\SecureInstall\
cd C:\SecureInstall
# Verify no unexpected DLLs are present before running
dir *.dll
# Run the installer from the clean directory
WDDiscoverySetup.exe

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWestern Digital

  • SeverityHIGH

  • CVSS Score8.9

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-427
  • Technical References
  • Western Digital Security Advisory
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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