CVE-2025-64355

6.5 MEDIUM

📋 TL;DR

This DOM-based Cross-Site Scripting (XSS) vulnerability in Crocoblock JetElements For Elementor allows attackers to inject malicious scripts into web pages viewed by users. The vulnerability affects WordPress sites using the JetElements plugin, potentially compromising user sessions and stealing sensitive data. All sites running vulnerable versions are at risk.

💻 Affected Systems

Products:
  • Crocoblock JetElements For Elementor WordPress Plugin
Versions: All versions through 2.7.12
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with the JetElements plugin enabled. Elementor page builder must be installed.

⚠️ 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 WordPress sites, deface websites, or redirect users to malicious sites, potentially leading to complete site compromise and data theft.

🟠

Likely Case

Attackers steal user session cookies, perform actions on behalf of authenticated users, or redirect users to phishing pages to harvest credentials.

🟢

If Mitigated

With proper Content Security Policy (CSP) headers and input validation, impact is limited to specific page contexts with minimal data exposure.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

DOM-based XSS typically requires user interaction but can be triggered via crafted links. No authentication needed for exploitation.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.7.13 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/jet-elements/vulnerability/wordpress-jetelements-for-elementor-plugin-2-7-12-cross-site-scripting-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Go to Plugins → Installed Plugins. 3. Find 'JetElements For Elementor'. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable JetElements Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate jet-elements

Implement Content Security Policy

all

Add CSP headers to restrict script execution

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to nginx config: add_header Content-Security-Policy "default-src 'self'; script-src 'self'";

🧯 If You Can't Patch

  • Implement Web Application Firewall (WAF) rules to block XSS payloads
  • Disable user input fields that trigger the vulnerability if identifiable

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → JetElements version. If version is 2.7.12 or earlier, you are vulnerable.

Check Version:

wp plugin get jet-elements --field=version

Verify Fix Applied:

Verify plugin version is 2.7.13 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual JavaScript payloads in URL parameters
  • Multiple requests with script tags in query strings
  • Unexpected redirects to external domains

Network Indicators:

  • HTTP requests containing <script> tags in parameters
  • Unusual outbound connections after page loads

SIEM Query:

source="web_server" AND ("<script" OR "javascript:" OR "onload=" OR "onerror=") AND uri_path="/wp-content/plugins/jet-elements/"

🔗 References

📤 Share & Export