CVE-2026-3059
Published: 12 March 2026
Summary
CVE-2026-3059 is a critical-severity Deserialization of Untrusted Data (CWE-502) vulnerability in Lmsys Sglang. Its CVSS base score is 9.8 (Critical).
Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked in the top 28.4% of CVEs by exploit likelihood; 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 AC-3 (Access Enforcement) and SI-10 (Information Input Validation).
Deeper analysis
SGLang's multimodal generation module is vulnerable to unauthenticated remote code execution. The flaw exists in the ZMQ broker, which calls pickle.loads() on data received without authentication or validation, allowing deserialization of untrusted content under CWE-502.
An attacker with network access can supply a malicious serialized payload to the broker and obtain arbitrary code execution, resulting in complete compromise of confidentiality, integrity, and availability on the host.
The GitHub security advisory GHSA-3cp7-c6q2-94xr, pull request 20904, and release v0.5.10 contain the remediation that addresses the unsafe deserialization path in scheduler_client.py.
The associated EPSS score has remained flat at 0.0194 since disclosure, indicating no material rise in observed exploitation interest; the issue affects an LLM serving framework and is detailed further in reporting from Orca Security.
OWASP Top 10 for Web (2025)
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2026-11557
Vulnerability details
SGLang's multimodal generation module is vulnerable to unauthenticated remote code execution through the ZMQ broker, which deserializes untrusted data using pickle.loads() without authentication.
- CWE(s)
Related Threats
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
Unauthenticated remote code execution via deserialization in a network-accessible ZMQ broker in SGLang directly enables exploitation of a public-facing application.
CVEs Like This One
Affected Assets
Mitigating Controls
Mitigating Controls (NIST 800-53 r5) AI
Directly blocks unauthenticated clients from reaching the ZMQ broker and invoking pickle.loads().
Requires validation or rejection of untrusted serialized data before it is passed to pickle.loads().
Restricts network connectivity to the ZMQ broker so that only authorized endpoints can submit payloads.