CVE-2026-2426

6.5 MEDIUM

📋 TL;DR

The WP-DownloadManager plugin for WordPress has a path traversal vulnerability that allows authenticated administrators to delete arbitrary files on the server. This can lead to remote code execution if critical files like wp-config.php are deleted. All WordPress sites using this plugin up to version 1.69 are affected.

💻 Affected Systems

Products:
  • WP-DownloadManager WordPress Plugin
Versions: All versions up to and including 1.69
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Requires authenticated administrator access to exploit. WordPress multisite installations may be affected differently.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete site compromise via remote code execution after deleting wp-config.php or other critical files, leading to data theft, defacement, or malware installation.

🟠

Likely Case

Site disruption or data loss from deletion of important files, potentially causing downtime or requiring restoration from backups.

🟢

If Mitigated

Limited impact if proper file permissions and access controls prevent deletion of critical system files.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires administrator credentials. The vulnerability is well-documented with public proof-of-concept available in commit references.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.69

Vendor Advisory: https://plugins.trac.wordpress.org/browser/wp-downloadmanager/trunk/download-manager.php

Restart Required: No

Instructions:

1. Update WP-DownloadManager plugin to latest version via WordPress admin panel. 2. Alternatively, download and install latest version from WordPress plugin repository. 3. Verify update completed successfully.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable WP-DownloadManager plugin until patched

wp plugin deactivate wp-downloadmanager

Restrict Administrator Access

all

Limit administrator accounts to trusted users only and implement strong authentication

🧯 If You Can't Patch

  • Implement strict file permissions on critical files (e.g., wp-config.php set to 400 or 440)
  • Monitor and audit administrator account activity for suspicious file deletion attempts

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > WP-DownloadManager version. If version is 1.69 or lower, you are vulnerable.

Check Version:

wp plugin list --name=wp-downloadmanager --field=version

Verify Fix Applied:

After updating, verify plugin version is higher than 1.69. Check that file deletion functionality no longer accepts directory traversal sequences.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file deletion events in WordPress logs
  • Multiple failed file deletion attempts with traversal sequences
  • Administrator account performing unexpected file operations

Network Indicators:

  • HTTP POST requests to download-manager.php with 'file' parameter containing '../' sequences

SIEM Query:

source="wordpress.log" AND "download-manager.php" AND "file=" AND ("../" OR "..\")

🔗 References

📤 Share & Export