CVE-2025-13692

7.2 HIGH

📋 TL;DR

The Unlimited Elements For Elementor WordPress plugin allows unauthenticated attackers to upload malicious SVG files containing JavaScript that executes when viewed. This stored XSS vulnerability affects all WordPress sites using plugin versions up to 2.0. Attackers can hijack user sessions, deface websites, or redirect users to malicious sites.

💻 Affected Systems

Products:
  • Unlimited Elements For Elementor WordPress Plugin
Versions: All versions up to and including 2.0
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires a form with file upload field created with premium version, but vulnerability persists even after premium version is deactivated/uninstalled.

⚠️ 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 site takeover through session hijacking of administrators, credential theft, malware distribution to visitors, and persistent website defacement.

🟠

Likely Case

Session hijacking of logged-in users, website defacement, and redirection to phishing/malware sites affecting site visitors.

🟢

If Mitigated

Limited impact to non-sensitive user sessions with proper content security policies and file upload restrictions in place.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Attack requires uploading SVG file with embedded JavaScript payload. No authentication needed once vulnerable form exists.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.0.1 or later

Vendor Advisory: https://wordpress.org/plugins/unlimited-elements-for-elementor/#developers

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Unlimited Elements For Elementor'. 4. Click 'Update Now' if update available. 5. If no update, manually download version 2.0.1+ from WordPress.org and replace plugin files.

🔧 Temporary Workarounds

Disable SVG Uploads

all

Block SVG file uploads through WordPress functions or .htaccess rules

Add to functions.php: add_filter('upload_mimes', function($mimes) { unset($mimes['svg']); return $mimes; });

Content Security Policy

all

Implement CSP headers to block inline script execution

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Or use WordPress CSP plugin

🧯 If You Can't Patch

  • Disable or uninstall the Unlimited Elements For Elementor plugin completely
  • Implement web application firewall rules to block SVG uploads and sanitize file uploads

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Unlimited Elements For Elementor → Version number. If version is 2.0 or lower, you are vulnerable.

Check Version:

wp plugin list --name='unlimited-elements-for-elementor' --field=version (WP-CLI) or check WordPress admin plugins page

Verify Fix Applied:

Verify plugin version is 2.0.1 or higher. Test SVG upload functionality to ensure scripts are properly sanitized.

📡 Detection & Monitoring

Log Indicators:

  • Unusual SVG file uploads in WordPress media logs
  • Multiple failed/successful SVG upload attempts from single IP
  • POST requests to /wp-content/uploads/ with SVG files

Network Indicators:

  • HTTP POST requests with SVG file uploads to WordPress endpoints
  • Unusual traffic to uploaded SVG files

SIEM Query:

source="wordpress" AND (uri_path="*svg" OR file_type="svg") AND http_method="POST"

🔗 References

📤 Share & Export