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
    • 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-4798

CVE-2025-4798: WP-DownloadManager Information Disclosure

CVE-2025-4798 is an information disclosure vulnerability in WP-DownloadManager for WordPress that allows administrators to read arbitrary files on the server. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-4798 Overview

The WP-DownloadManager plugin for WordPress contains an arbitrary file read vulnerability affecting all versions up to and including 1.68.10. This vulnerability exists due to a lack of restriction on the directory an administrator can select for storing downloads, enabling authenticated attackers with Administrator-level access to download and read any file on the server, including sensitive system and configuration files.

Critical Impact

Authenticated attackers with administrator privileges can read arbitrary files from the server, potentially exposing sensitive configuration data, credentials, and system files.

Affected Products

  • WP-DownloadManager plugin for WordPress versions up to and including 1.68.10
  • WordPress installations running vulnerable versions of WP-DownloadManager

Discovery Timeline

  • June 11, 2025 - CVE-2025-4798 published to NVD
  • July 9, 2025 - Last updated in NVD database

Technical Details for CVE-2025-4798

Vulnerability Analysis

This arbitrary file read vulnerability stems from insufficient access controls within the WP-DownloadManager plugin's download directory configuration functionality. The plugin fails to properly validate or restrict the directory paths that an administrator can configure for storing downloadable files. This oversight allows a malicious or compromised administrator account to configure the download directory to point to sensitive system locations outside the intended WordPress installation directory.

Once the download directory is configured to point to a sensitive location such as /etc/ or the WordPress root directory, the attacker can leverage the plugin's legitimate download functionality to read arbitrary files from those locations. This can expose critical system files like /etc/passwd, WordPress configuration files containing database credentials (wp-config.php), and other sensitive data that should not be accessible through the web interface.

Root Cause

The root cause of this vulnerability is the absence of proper path validation and directory traversal protection in the download-options.php file. The plugin accepts user-supplied directory paths without verifying that they remain within acceptable boundaries. According to CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor), this type of information disclosure vulnerability occurs when an application fails to properly restrict access to sensitive resources.

Attack Vector

The attack vector requires network access and authenticated administrator-level privileges. An attacker who has compromised an administrator account or is a malicious insider with admin access can exploit this vulnerability through the following method:

  1. Log in to the WordPress admin panel with administrator credentials
  2. Navigate to the WP-DownloadManager plugin settings
  3. Modify the download directory configuration to point to a sensitive system path
  4. Use the download functionality to retrieve arbitrary files from the configured directory

The vulnerability is exploited through the plugin's download options configuration interface, where the lack of directory path restrictions allows pointing to sensitive locations. For detailed technical analysis, refer to the Wordfence Vulnerability Analysis and the relevant WordPress plugin source code.

Detection Methods for CVE-2025-4798

Indicators of Compromise

  • Unexpected changes to WP-DownloadManager download directory settings in the WordPress database
  • Administrator-initiated downloads of files outside the standard WordPress upload directories
  • Access to sensitive system files like /etc/passwd, /etc/shadow, or wp-config.php through the download functionality
  • Unusual file access patterns in web server logs originating from the download manager endpoints

Detection Strategies

  • Monitor WordPress admin activity logs for changes to WP-DownloadManager plugin configuration
  • Implement file integrity monitoring on critical configuration files such as wp-config.php
  • Review web server access logs for unusual file download patterns or access to system directories
  • Deploy web application firewalls (WAF) with rules to detect path traversal attempts in plugin parameters

Monitoring Recommendations

  • Enable WordPress audit logging to track all administrator-level configuration changes
  • Configure alerts for modifications to plugin settings, particularly download directory paths
  • Implement real-time monitoring for access attempts to sensitive system files
  • Review administrator account activity regularly for signs of compromise

How to Mitigate CVE-2025-4798

Immediate Actions Required

  • Update WP-DownloadManager to the latest patched version immediately
  • Review current WP-DownloadManager configuration to ensure download directories are set appropriately
  • Audit administrator accounts for any unauthorized or suspicious activity
  • Verify that no sensitive files have been accessed through the download functionality

Patch Information

The vendor has released a security patch addressing this vulnerability. The fix is available in WordPress Changeset #3294467. Users should update to the latest version of WP-DownloadManager through the WordPress plugin update mechanism or by manually downloading the patched version from the WordPress plugin repository.

Workarounds

  • Restrict administrator access to trusted users only and implement strong authentication mechanisms
  • Apply the principle of least privilege by limiting the number of users with administrator access
  • Consider temporarily disabling the WP-DownloadManager plugin until the update can be applied
  • Implement server-level restrictions to prevent the web server from accessing sensitive system directories
bash
# Verify WP-DownloadManager plugin version
wp plugin list --name=wp-downloadmanager --fields=name,version,update_version

# Update WP-DownloadManager to latest version
wp plugin update wp-downloadmanager

# Review download manager configuration
wp option get download_manager_options

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechWp Downloadmanager

  • SeverityMEDIUM

  • CVSS Score4.9

  • EPSS Probability0.05%

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

  • NVD-CWE-noinfo
  • Technical References
  • WordPress Download Manager Code

  • WordPress Download Manager Code

  • Wordfence Vulnerability Analysis
  • Vendor Resources
  • WordPress Changeset #3294467
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs 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