CVE-2025-47492

8.6 HIGH

📋 TL;DR

This path traversal vulnerability in the Drag and Drop File Upload for Elementor Forms WordPress plugin allows attackers to delete arbitrary files on the server. It affects all WordPress sites using this plugin from any version up to 1.4.3. Attackers can potentially delete critical system files or website content.

💻 Affected Systems

Products:
  • Drag and Drop File Upload for Elementor Forms WordPress Plugin
Versions: All versions up to and including 1.4.3
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with Elementor Forms 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 website destruction through deletion of WordPress core files, database files, or system files leading to service disruption and data loss.

🟠

Likely Case

Selective deletion of website content, configuration files, or uploaded media causing partial service disruption and content loss.

🟢

If Mitigated

Limited impact if file permissions restrict deletion to web-accessible directories only, still allowing deletion of website assets.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

The vulnerability is publicly documented with technical details, making exploitation straightforward for attackers.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.4.4 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/drag-and-drop-file-upload-for-elementor-forms/vulnerability/wordpress-drag-and-drop-file-upload-for-elementor-forms-1-4-3-arbitrary-file-deletion-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 File Upload for Elementor Forms'. 4. Click 'Update Now' if available. 5. Alternatively, download version 1.4.4+ from WordPress repository and replace the plugin files.

🔧 Temporary Workarounds

Disable the vulnerable plugin

all

Temporarily deactivate the plugin until patched

wp plugin deactivate drag-and-drop-file-upload-for-elementor-forms

Restrict file deletion permissions

linux

Set restrictive file permissions on critical directories

chmod 755 /var/www/html/wp-content/uploads
chmod 644 /var/www/html/wp-config.php

🧯 If You Can't Patch

  • Disable the plugin immediately and use alternative file upload solutions
  • Implement web application firewall rules to block path traversal patterns in requests

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Plugins > Installed Plugins for 'Drag and Drop File Upload for Elementor Forms' version 1.4.3 or earlier

Check Version:

wp plugin get drag-and-drop-file-upload-for-elementor-forms --field=version

Verify Fix Applied:

Verify plugin version is 1.4.4 or higher in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • HTTP requests containing '../' patterns to plugin endpoints
  • File deletion operations in web server logs
  • 404 errors for suddenly missing files

Network Indicators:

  • POST requests to /wp-admin/admin-ajax.php with 'action' parameter containing 'dnd_upload_file' and path traversal sequences

SIEM Query:

source="web_server" AND (uri="*admin-ajax.php*" AND post_data="*../*" AND post_data="*dnd_upload_file*")

🔗 References

📤 Share & Export