CVE-2026-26210
Published: 23 April 2026
Summary
CVE-2026-26210 is a critical-severity Deserialization of Untrusted Data (CWE-502) vulnerability in Kvcache-Ai Ktransformers. Its CVSS base score is 9.8 (Critical).
Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 22.5th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.
The strongest mitigations our analysis identified are NIST 800-53 SC-7 (Boundary Protection) and SI-10 (Information Input Validation).
Threat & Defense at a Glance
Threat & Defense Details
Mitigating Controls (NIST 800-53 r5)AI
Requires validation of incoming messages to the ZMQ socket before deserialization, directly preventing execution of crafted pickle payloads.
Mandates identification, reporting, and correction of the unsafe deserialization flaw, enabling application of the available vendor patch.
Monitors and controls network communications at boundaries to block unauthorized access to the ZMQ ROUTER socket bound to all interfaces.
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
Unsafe pickle deserialization on unauthenticated, publicly bound ZMQ RPC socket directly enables remote arbitrary code execution (T1190 Exploit Public-Facing Application) via Python interpreter (T1059.006 Python).
NVD Description
KTransformers through 0.5.3 contains an unsafe deserialization vulnerability in the balance_serve backend mode where the scheduler RPC server binds a ZMQ ROUTER socket to all interfaces with no authentication and deserializes incoming messages using pickle.loads() without validation. Attackers can send…
more
a crafted pickle payload to the exposed ZMQ socket to execute arbitrary code on the server with the privileges of the ktransformers process.
Deeper analysisAI
CVE-2026-26210 is an unsafe deserialization vulnerability (CWE-502) in KTransformers versions through 0.5.3. The issue resides in the balance_serve backend mode, where the scheduler RPC server binds a ZMQ ROUTER socket to all interfaces without authentication and deserializes incoming messages using the pickle.loads() function without any validation. Published on 2026-04-23, it carries a CVSS v3.1 base score of 9.8 (AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H), marking it as critical.
Remote attackers require no privileges or user interaction to exploit the vulnerability over the network. By sending a crafted pickle payload to the exposed ZMQ socket, they can achieve arbitrary code execution on the server with the privileges of the ktransformers process, potentially leading to full compromise of the host.
Advisories and a patch are detailed in referenced sources, including a GitHub pull request at https://github.com/kvcache-ai/ktransformers/pull/1944, a technical post at https://chocapikk.com/posts/2026/ktransformers-pickle-rce/, and a VulnCheck advisory at https://www.vulncheck.com/advisories/ktransformers-unsafe-deserialization-rce-via-balance-serve.
Details
- CWE(s)