Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-25874

CVE-2026-25874: LeRobot RCE Vulnerability

CVE-2026-25874 is a remote code execution flaw in LeRobot through unsafe deserialization. Attackers can execute arbitrary code via unauthenticated gRPC channels. This article covers technical details, affected versions, and mitigations.

Published: April 23, 2026

CVE-2026-25874 Overview

CVE-2026-25874 is a critical insecure deserialization vulnerability affecting LeRobot through version 0.5.1. The vulnerability exists in the async inference pipeline where pickle.loads() is used to deserialize data received over unauthenticated gRPC channels without TLS encryption in both the policy server and robot client components. An unauthenticated network-reachable attacker can achieve arbitrary code execution on the server or client by sending a crafted pickle payload through the SendPolicyInstructions, SendObservations, or GetActions gRPC calls.

Critical Impact

Remote code execution is achievable by unauthenticated attackers with network access to the gRPC endpoint, potentially compromising both policy servers and robot client systems without any user interaction.

Affected Products

  • LeRobot versions through 0.5.1
  • LeRobot policy server component
  • LeRobot robot client component

Discovery Timeline

  • 2026-04-23 - CVE-2026-25874 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-25874

Vulnerability Analysis

This vulnerability stems from the use of Python's native pickle serialization module for handling untrusted data over network channels. The LeRobot async inference pipeline accepts serialized objects through gRPC endpoints without implementing authentication, encryption, or input validation. Python's pickle module is inherently unsafe for deserializing untrusted data because it can execute arbitrary code during the deserialization process.

The affected gRPC methods—SendPolicyInstructions, SendObservations, and GetActions—all process incoming pickle-serialized data using pickle.loads(). Since these channels lack TLS encryption and authentication mechanisms, any network-adjacent attacker can inject malicious pickle payloads that execute arbitrary code when deserialized.

Root Cause

The root cause is the use of pickle.loads() on untrusted network input without proper security controls. This represents CWE-502: Deserialization of Untrusted Data. The combination of unauthenticated gRPC endpoints and the inherently dangerous pickle deserialization creates a direct path to remote code execution. The lack of TLS further exacerbates the risk by exposing the communication channel to network interception and injection attacks.

Attack Vector

The attack requires network reachability to the vulnerable gRPC endpoints. An attacker crafts a malicious pickle payload containing code execution primitives (such as __reduce__ methods that invoke system commands) and sends it to one of the vulnerable gRPC methods. When the LeRobot server or client processes this request, pickle.loads() deserializes the payload, triggering arbitrary code execution in the context of the LeRobot process.

The vulnerability is particularly dangerous because:

  • No authentication is required to access the gRPC endpoints
  • Both server and client components are vulnerable
  • The attack requires no user interaction
  • Full system compromise is possible upon successful exploitation

Technical analysis and proof-of-concept details are available in the Chocapikk RCE Analysis and the VulnCheck Advisory.

Detection Methods for CVE-2026-25874

Indicators of Compromise

  • Unexpected network connections to LeRobot gRPC ports from untrusted sources
  • Anomalous process spawning from LeRobot Python processes
  • Unusual system commands or shell activity originating from the LeRobot service context
  • Network traffic containing pickle-serialized payloads with suspicious __reduce__ or code execution patterns

Detection Strategies

  • Monitor network traffic to gRPC endpoints for connections from unauthorized IP addresses
  • Implement application-level logging to capture all incoming gRPC requests and payloads
  • Deploy endpoint detection and response (EDR) solutions to identify process injection or unusual child process creation from LeRobot processes
  • Use network intrusion detection systems (NIDS) to flag unencrypted gRPC traffic containing pickle serialization markers

Monitoring Recommendations

  • Enable verbose logging for LeRobot policy server and robot client components
  • Configure alerts for any process execution events spawned by the LeRobot service user
  • Monitor for unexpected outbound network connections that may indicate post-exploitation activity
  • Implement network segmentation to restrict access to LeRobot gRPC endpoints to trusted hosts only

How to Mitigate CVE-2026-25874

Immediate Actions Required

  • Restrict network access to LeRobot gRPC endpoints using firewall rules, allowing only trusted IP addresses
  • Isolate LeRobot deployments in segmented network zones until patches can be applied
  • Monitor for any signs of compromise using the detection strategies outlined above
  • Review system logs for any historical evidence of exploitation attempts

Patch Information

The vulnerability has been addressed in the LeRobot repository. Users should refer to GitHub Pull Request #3048 for the security fix. Upgrade to a patched version as soon as available by monitoring the official repository and release notes.

Additional context and discussion can be found in GitHub Issue #3047 and GitHub Issue #3134.

Workarounds

  • Implement network-level access controls (firewalls, security groups) to restrict gRPC endpoint access to trusted hosts only
  • Deploy a TLS-terminating proxy in front of LeRobot gRPC services to add encryption and potentially authentication
  • Run LeRobot services in isolated containers or sandboxed environments to limit the blast radius of potential exploitation
  • Consider disabling the async inference pipeline if not required for your use case until a patch is applied
bash
# Example: Restrict gRPC port access using iptables
# Allow only trusted IP range to access LeRobot gRPC port (example port 50051)
iptables -A INPUT -p tcp --dport 50051 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 50051 -j DROP

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechLerobot

  • SeverityCRITICAL

  • CVSS Score9.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • Chocapikk RCE Analysis

  • GitHub Issue Discussion #3047

  • GitHub Issue Discussion #3134

  • GitHub Pull Request #3048

  • VulnCheck Advisory on RCE
  • Latest CVEs
  • CVE-2026-41272: Flowise LLM Builder SSRF Vulnerability

  • CVE-2026-41268: Flowise RCE Vulnerability

  • CVE-2026-41265: Flowise Airtable Agent RCE Vulnerability

  • CVE-2026-41137: Flowise CSVAgent RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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