#Vulnerabilities

CISA Alert: Critical Remote Code Execution Vulnerability in KMW CCTV Security Cameras (CVE‑2026‑12345)

Vulnerabilities Reporter
3 min read

KMW CCTV cameras are vulnerable to unauthenticated remote code execution. CVE‑2026‑12345 carries a CVSS 9.8 score. All models from firmware 2.3.0 to 3.1.4 are affected. Immediate firmware updates and network segmentation are required.

Immediate Impact

KMW CCTV security cameras can be taken over by attackers without credentials. The flaw allows execution of arbitrary OS commands, enabling full compromise of the camera and any network segment it resides on. A single exploited camera can become a foothold for lateral movement across corporate or municipal networks.

Technical Details

  • CVE Identifier: CVE‑2026‑12345
  • Affected Products: All KMW series cameras (Model X100, X200, X300) running firmware versions 2.3.0 – 3.1.4.
  • Vulnerability Type: Unauthenticated Remote Code Execution (RCE) via crafted HTTP POST to /api/v1/upgrade.
  • Root Cause: The camera’s embedded web server fails to validate the filename parameter. An attacker can supply a path traversal payload (../../../../tmp/malware.bin) that the server writes to the device’s filesystem and then executes via a privileged system() call.
  • CVSS v3.1 Base Score: 9.8 (Critical)
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Changed
    • Confidentiality Impact: High
    • Integrity Impact: High
    • Availability Impact: High
  • Exploit Availability: Public proof‑of‑concept code posted on GitHub (see exploit repo).

How the Exploit Works

  1. Discovery – Scan the network for open TCP port 80/443 on KMW devices. The camera banner reveals firmware version.
  2. Payload Delivery – Send a crafted multipart/form‑data POST request to /api/v1/upgrade with a malicious filename containing directory traversal sequences.
  3. Write & Execute – The server writes the attacker‑controlled binary to /tmp/ and immediately runs it with root privileges.
  4. Persistence – The payload installs a reverse shell and adds a startup script to /etc/rc.local.

Real‑World Consequences

A compromised camera can stream video to an attacker, capture credentials from nearby devices, and serve as a pivot point for ransomware deployment. In a recent test, researchers used the flaw to exfiltrate 2 GB of data from a municipal network within 12 minutes.

Mitigation Steps

  1. Apply Firmware Update – KMW released firmware 3.1.5 on 2026‑04‑28. Download from the official support portal.
  2. Network Segmentation – Place all IP cameras on a dedicated VLAN with no direct internet access. Restrict inbound traffic to management IPs only.
  3. Disable Unused Services – Turn off HTTP if HTTPS is available. Use strong TLS ciphers and enforce client certificate authentication.
  4. Monitor Logs – Enable logging of /api/v1/upgrade requests and alert on anomalous filenames or repeated attempts.
  5. Patch Management – Integrate KMW firmware into your regular patch cycle. Verify checksums before deployment.

Timeline

  • 2026‑03‑15 – Vulnerability discovered by independent security researcher.
  • 2026‑03‑20 – Initial disclosure to KMW under CVE‑2026‑12345.
  • 2026‑04‑02 – KMW acknowledges issue, begins internal testing.
  • 2026‑04‑15 – Public advisory issued by CISA.
  • 2026‑04‑28 – Firmware 3.1.5 released, addressing the RCE bug.
  • 2026‑05‑05 – CISA adds CVE to the National Cyber Awareness System.
  • Inventory – Identify all KMW cameras and their firmware versions.
  • Prioritize – Upgrade any device below 3.1.5 immediately.
  • Isolate – Until patched, block outbound traffic from cameras to the internet.
  • Test – After update, verify that the /api/v1/upgrade endpoint rejects malformed filenames.
  • Report – If you observe exploitation attempts, file a report with CISA via the Cyber Incident Reporting portal.

Conclusion

The KMW camera RCE is a high‑severity threat that can compromise entire networks. Prompt firmware updates, strict network segmentation, and vigilant monitoring are the only effective defenses. Organizations running KMW CCTV systems must act now to prevent potential data loss and operational disruption.

Comments

Loading comments...