CVE-2025-64361

6.5 MEDIUM

📋 TL;DR

This DOM-based cross-site scripting (XSS) vulnerability in the Consulting Elementor Widgets WordPress plugin allows attackers to inject malicious scripts into web pages viewed by other users. It affects all WordPress sites using this plugin version 1.4.2 or earlier. Successful exploitation could lead to session hijacking, defacement, or malware distribution.

💻 Affected Systems

Products:
  • StyleMixThemes Consulting Elementor Widgets WordPress Plugin
Versions: All versions up to and including 1.4.2
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires the vulnerable plugin to be installed and activated on a WordPress site. The vulnerability is present in the default configuration.

⚠️ 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 could steal administrator credentials, take over the WordPress site, install backdoors, or redirect visitors to malicious sites, potentially compromising the entire web server and user data.

🟠

Likely Case

Attackers inject malicious JavaScript to steal user session cookies, perform actions on behalf of authenticated users, or deface portions of the website.

🟢

If Mitigated

With proper input validation and output encoding, malicious scripts would be neutralized before reaching users, preventing exploitation.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Exploitation requires user interaction (such as clicking a malicious link) and knowledge of the vulnerable DOM manipulation. No public exploit code is currently available.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version 1.4.3 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/consulting-elementor-widgets/vulnerability/wordpress-consulting-elementor-widgets-plugin-1-4-2-cross-site-scripting-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Consulting Elementor Widgets' and click 'Update Now' if available. 4. Alternatively, download version 1.4.3+ from WordPress.org and manually update via FTP.

🔧 Temporary Workarounds

Temporary Plugin Deactivation

WordPress

Disable the vulnerable plugin until patched to prevent exploitation.

wp plugin deactivate consulting-elementor-widgets

Content Security Policy (CSP)

all

Implement a strict CSP header to block inline scripts and unauthorized script sources.

Header set Content-Security-Policy "default-src 'self'; script-src 'self'" in .htaccess or web server config

🧯 If You Can't Patch

  • Disable the Consulting Elementor Widgets plugin immediately
  • Implement web application firewall (WAF) rules to block XSS payloads

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Plugins > Installed Plugins for 'Consulting Elementor Widgets' version number.

Check Version:

wp plugin get consulting-elementor-widgets --field=version

Verify Fix Applied:

Verify plugin version is 1.4.3 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST/GET requests containing JavaScript payloads to plugin endpoints
  • Multiple failed XSS attempts in web server logs

Network Indicators:

  • HTTP requests with suspicious script tags or JavaScript in parameters
  • Unexpected outbound connections from user browsers after visiting the site

SIEM Query:

source="web_server.log" AND ("consulting-elementor-widgets" OR "stylemixthemes") AND ("<script" OR "javascript:" OR "onerror=" OR "onload=")

🔗 References

📤 Share & Export