CVE-2025-13498

4.3 MEDIUM

📋 TL;DR

The Download Manager WordPress plugin up to version 3.3.32 has an authorization bypass vulnerability that allows authenticated users with Subscriber-level access or higher to retrieve passwords and access control settings for protected media attachments. This enables attackers to bypass media protection and download restricted files. All WordPress sites using vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • WordPress Download Manager plugin
Versions: All versions up to and including 3.3.32
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Download Manager plugin enabled and protected media attachments configured.

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

Attackers gain unauthorized access to sensitive protected files, potentially exposing confidential business documents, personal data, or intellectual property.

🟠

Likely Case

Subscriber-level users or compromised accounts access restricted media files they shouldn't have permission to view or download.

🟢

If Mitigated

No impact if proper authorization checks are implemented or plugin is updated/disabled.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires authenticated access (Subscriber role or higher) and involves calling the vulnerable wpdm_media_access AJAX action.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.3.33 or later

Vendor Advisory: https://plugins.trac.wordpress.org/changeset/3413804/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Download Manager' and click 'Update Now'. 4. Alternatively, download version 3.3.33+ from WordPress plugin repository and manually update.

🔧 Temporary Workarounds

Disable vulnerable AJAX endpoint

all

Remove or restrict access to the wpdm_media_access AJAX action

Add to theme's functions.php or custom plugin: remove_action('wp_ajax_wpdm_media_access', 'wpdm_media_access'); remove_action('wp_ajax_nopriv_wpdm_media_access', 'wpdm_media_access');

Temporarily disable plugin

linux

Deactivate Download Manager plugin until patched

wp plugin deactivate download-manager

🧯 If You Can't Patch

  • Restrict user registration and review existing user accounts for suspicious activity
  • Implement web application firewall rules to block requests to wpdm_media_access AJAX endpoint

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for Download Manager version ≤ 3.3.32

Check Version:

wp plugin list --name=download-manager --field=version

Verify Fix Applied:

Confirm Download Manager plugin version is 3.3.33 or higher after update

📡 Detection & Monitoring

Log Indicators:

  • POST requests to /wp-admin/admin-ajax.php with action=wpdm_media_access from non-admin users
  • Unusual access patterns to protected media files

Network Indicators:

  • HTTP POST requests containing 'action=wpdm_media_access' parameter

SIEM Query:

source="web_access_logs" AND uri="/wp-admin/admin-ajax.php" AND post_data="*action=wpdm_media_access*" AND user_role!="administrator"

🔗 References

📤 Share & Export