CVE-2025-10747

7.2 HIGH

📋 TL;DR

The WP-DownloadManager WordPress plugin allows authenticated administrators to upload arbitrary files due to missing file type validation. This vulnerability could lead to remote code execution on affected WordPress sites. Only sites using vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • WP-DownloadManager WordPress Plugin
Versions: All versions up to and including 1.68.11
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires administrator-level WordPress user account. Plugin must be installed and active.

⚠️ 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

Full server compromise via remote code execution, allowing attackers to steal data, install malware, or pivot to other systems.

🟠

Likely Case

Attackers with administrator credentials upload webshells to gain persistent access and execute arbitrary commands on the server.

🟢

If Mitigated

If proper file upload restrictions and administrator account security are in place, impact is limited to unauthorized file storage.

🌐 Internet-Facing: HIGH - WordPress sites are typically internet-facing, and administrator accounts are common targets for credential theft.
🏢 Internal Only: MEDIUM - Internal attackers with administrator access could exploit this, but requires elevated privileges.

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires administrator credentials but is technically simple once authenticated.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.68.11

Vendor Advisory: https://wordpress.org/plugins/wp-downloadmanager/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find WP-DownloadManager and click 'Update Now'. 4. Verify plugin version is 1.68.12 or higher.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate wp-downloadmanager

Restrict File Uploads

linux

Add server-side file type validation via .htaccess or web server configuration

# Add to .htaccess:
<FilesMatch "\.(php|phtml|php3|php4|php5|php7|phps|phar|inc|pl|py|jsp|asp|sh|cgi|exe)$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

🧯 If You Can't Patch

  • Remove administrator access from all non-essential users and enforce strong password policies
  • Implement web application firewall rules to block suspicious file upload patterns

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Installed Plugins for WP-DownloadManager version ≤1.68.11

Check Version:

wp plugin get wp-downloadmanager --field=version

Verify Fix Applied:

Verify plugin version is 1.68.12 or higher in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual file uploads to /wp-content/plugins/wp-downloadmanager/
  • POST requests to download-add.php with executable file extensions

Network Indicators:

  • HTTP POST requests containing PHP/executable files to plugin endpoints

SIEM Query:

source="web_server" AND (uri_path="*download-add.php*" AND method="POST" AND (file_extension="php" OR file_extension="exe" OR file_extension="sh"))

🔗 References

📤 Share & Export