A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-3059

CVE-2026-3059: Lmsys Sglang RCE Vulnerability

CVE-2026-3059 is a remote code execution vulnerability in Lmsys Sglang's multimodal generation module that exploits unsafe deserialization via ZMQ broker. This article covers technical details, affected versions, and mitigations.

Updated: May 14, 2026

CVE-2026-3059 Overview

CVE-2026-3059 is an unauthenticated remote code execution vulnerability in the SGLang large language model serving framework maintained by LMSYS. The flaw resides in the multimodal generation module, where the ZeroMQ (ZMQ) broker deserializes incoming messages using Python's pickle.loads() without any authentication or integrity checks. Any attacker with network access to the ZMQ socket can submit a crafted pickle payload and execute arbitrary code in the context of the SGLang process. The vulnerability is tracked under [CWE-502: Deserialization of Untrusted Data].

Critical Impact

Unauthenticated attackers can achieve remote code execution on hosts running the SGLang multimodal generation service, compromising model serving infrastructure and any data accessible to the process.

Affected Products

  • LMSYS SGLang multimodal generation module (versions prior to v0.5.10)
  • Deployments exposing the SGLang scheduler ZMQ broker on reachable interfaces
  • Multimodal inference pipelines built on affected SGLang releases

Discovery Timeline

  • 2026-03-12 - CVE-2026-3059 published to the National Vulnerability Database (NVD)
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-3059

Vulnerability Analysis

SGLang is a serving framework for large language models and multimodal models. Its multimodal generation runtime uses a ZMQ-based scheduler to dispatch work between client and worker processes. The scheduler client component, implemented in python/sglang/multimodal_gen/runtime/scheduler_client.py, reads messages from a ZMQ socket and reconstructs Python objects with pickle.loads().

Pickle is not a safe deserialization format. Any object reconstruction can invoke arbitrary callables through the __reduce__ protocol. Because the ZMQ broker accepts connections without authentication, message signing, or transport-level access control, anyone who can reach the listening socket controls what the server deserializes.

An attacker who reaches the broker can deliver a pickle payload whose __reduce__ method returns a tuple referencing os.system, subprocess.Popen, or any other callable. Deserialization triggers execution in the SGLang worker context, yielding code execution with the privileges of the serving process.

Root Cause

The root cause is unsafe use of pickle.loads() on data received from an untrusted network source. The ZMQ broker channel was treated as an internal trust boundary, but no binding restriction, authentication layer (such as CurveZMQ), or safer serialization format (such as JSON or protobuf) was enforced.

Attack Vector

Exploitation requires network reachability to the SGLang multimodal scheduler ZMQ endpoint. No user interaction or prior authentication is needed. The attacker crafts a malicious pickle object, transmits it through a ZMQ client connection, and the broker deserializes it on receipt. Deployments that bind the broker to 0.0.0.0 or expose it through container networking, Kubernetes services, or shared inference clusters are directly reachable. See the SGLang Security Advisory GHSA-3cp7-c6q2-94xr and the Orca Security RCE analysis for technical details.

Detection Methods for CVE-2026-3059

Indicators of Compromise

  • Unexpected child processes spawned by the SGLang Python worker, such as shells, curl, wget, or interpreters launched outside normal model serving flows
  • Outbound network connections from SGLang processes to unfamiliar hosts shortly after inbound ZMQ traffic
  • New files written under the SGLang working directory or /tmp that contain shell scripts, loaders, or cron entries
  • ZMQ traffic to the multimodal scheduler port from clients outside the documented inference cluster

Detection Strategies

  • Inspect process trees for python or SGLang workers spawning /bin/sh, bash, python -c, or other interpreters as child processes
  • Monitor for anomalous deserialization-related stack frames in application logs, including unhandled exceptions originating in pickle or scheduler_client.py
  • Apply network analytics to flag external connections reaching the ZMQ scheduler port on inference hosts

Monitoring Recommendations

  • Forward SGLang stdout, stderr, and crash logs to a centralized logging pipeline and alert on tracebacks referencing pickle.loads
  • Capture process telemetry on GPU and inference nodes to baseline expected child processes and detect deviations
  • Track ingress traffic to model serving ports and alert on connections from non-allowlisted source addresses

How to Mitigate CVE-2026-3059

Immediate Actions Required

  • Upgrade SGLang to release v0.5.10 or later, which contains the fix shipped in pull request #20904
  • Restrict network reachability of the multimodal scheduler ZMQ broker to loopback or a trusted internal segment until patches are applied
  • Rotate any credentials, API keys, or model artifacts that were accessible from hosts running an unpatched SGLang instance
  • Audit inference hosts for the indicators of compromise listed above before returning them to service

Patch Information

The maintainers released SGLang v0.5.10 addressing the unsafe deserialization path in the multimodal scheduler client. Review the fix in pull request #20904 and the GHSA-3cp7-c6q2-94xr advisory for the full list of changes.

Workarounds

  • Bind the ZMQ broker to 127.0.0.1 and route all inference traffic through an authenticated reverse proxy when an immediate upgrade is not possible
  • Enforce host firewall rules or Kubernetes NetworkPolicies that allow only known client IPs to reach the scheduler port
  • Run SGLang workers as a low-privilege account inside a hardened container to limit blast radius if exploitation occurs
  • Place the inference cluster behind a mutually authenticated transport such as a service mesh with mTLS until the patched release is deployed

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechLmsys Sglang

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability1.84%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • GitHub Scheduler Client Script

  • GitHub Pull Request #20904

  • GitHub Release v0.5.10

  • GitHub Security Advisory GHSA-3cp7-c6q2-94xr
  • Vendor Resources
  • Orca Security Blog RCE Analysis
  • Related CVEs
  • CVE-2026-7301: Lmsys Sglang RCE Vulnerability

  • CVE-2026-7304: Lmsys Sglang RCE Vulnerability

  • CVE-2026-7302: Lmsys Sglang Path Traversal Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English