CVE-2025-49885

10.0 CRITICAL

📋 TL;DR

This vulnerability allows unauthenticated attackers to upload arbitrary files, including web shells, to WordPress sites using the Drag and Drop Multiple File Upload (Pro) - WooCommerce plugin. Attackers can achieve remote code execution and full server compromise. All WordPress sites with vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • Drag and Drop Multiple File Upload (Pro) - WooCommerce WordPress plugin
Versions: All versions up to and including 5.0.6
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with WooCommerce and the vulnerable plugin installed and activated.

⚠️ 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 server takeover with persistent backdoor installation, data theft, ransomware deployment, and use as attack platform for further network compromise.

🟠

Likely Case

Web shell upload leading to website defacement, data exfiltration, cryptocurrency mining, or credential harvesting.

🟢

If Mitigated

File uploads blocked or properly validated, limiting impact to denial of service or unsuccessful attack attempts.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: CONFIRMED
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Simple HTTP POST request with malicious file upload bypasses validation.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 5.0.7 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/drag-and-drop-file-upload-wc-pro/vulnerability/wordpress-drag-and-drop-multiple-file-upload-pro-woocommerce-5-0-6-arbitrary-file-upload-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Drag and Drop Multiple File Upload (Pro) - WooCommerce'. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from vendor and manually update.

🔧 Temporary Workarounds

Disable plugin immediately

all

Temporarily disable the vulnerable plugin until patching is possible

wp plugin deactivate drag-and-drop-file-upload-wc-pro

Web server file upload restriction

all

Block PHP file uploads via web server configuration

# For Apache: add to .htaccess
<FilesMatch "\.(php|phtml|php3|php4|php5|php7|phps)$">
    Deny from all
</FilesMatch>
# For Nginx: add to server block
location ~ \.(php|phtml|php3|php4|php5|php7|phps)$ {
    deny all;
}

🧯 If You Can't Patch

  • Remove the plugin completely and use alternative file upload solutions
  • Implement web application firewall (WAF) rules to block file uploads to vulnerable endpoints

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Drag and Drop Multiple File Upload (Pro) - WooCommerce version

Check Version:

wp plugin get drag-and-drop-file-upload-wc-pro --field=version

Verify Fix Applied:

Confirm plugin version is 5.0.7 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • HTTP POST requests to /wp-content/plugins/drag-and-drop-file-upload-wc-pro/ with file uploads
  • Unexpected PHP file creation in upload directories
  • Web server error logs showing file type validation bypass

Network Indicators:

  • Unusual file upload traffic to plugin endpoints
  • POST requests with PHP/executable file extensions

SIEM Query:

source="web_server" AND (uri_path="*drag-and-drop-file-upload-wc-pro*" AND method="POST") AND (file_extension="php" OR file_extension="phtml" OR file_extension="php3")

🔗 References

📤 Share & Export