CVE-2025-13498
📋 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
- WordPress Download Manager plugin
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- 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.
🎯 Exploit Status
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
allRemove 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
linuxDeactivate 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
- https://plugins.trac.wordpress.org/browser/download-manager/tags/3.3.32/src/MediaLibrary/MediaAccessControl.php#L26
- https://plugins.trac.wordpress.org/browser/download-manager/tags/3.3.32/src/MediaLibrary/MediaAccessControl.php#L275
- https://plugins.trac.wordpress.org/browser/download-manager/tags/3.3.32/src/MediaLibrary/MediaAccessControl.php#L299
- https://plugins.trac.wordpress.org/changeset/3413804/
- https://www.wordfence.com/threat-intel/vulnerabilities/id/f2cdd50d-6290-4cef-a72c-2e9d680d4f1f?source=cve