The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-31234

CVE-2026-31234: Horovod KVStore RCE Vulnerability

CVE-2026-31234 is a remote code execution flaw in Horovod's KVStore component that allows attackers to execute arbitrary code via insecure deserialization. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-31234 Overview

CVE-2026-31234 is an insecure deserialization vulnerability [CWE-502] in Horovod, an open-source distributed deep learning training framework. Versions up to and including 0.28.1 are affected. The flaw exists in the KVStore HTTP server component, which coordinates distributed training tasks across workers. The server lacks authentication and authorization controls, allowing any remote attacker to write arbitrary data via HTTP PUT requests. Horovod workers later retrieve this data via HTTP GET and deserialize it with cloudpickle.loads() without source or integrity verification. An attacker who races the legitimate writer can deliver a malicious pickle payload, causing the victim worker to execute arbitrary code.

Critical Impact

Unauthenticated remote attackers can achieve arbitrary code execution on Horovod worker nodes by poisoning the KVStore before legitimate data is written.

Affected Products

  • Horovod distributed training framework versions up to and including 0.28.1
  • Horovod KVStore HTTP server component
  • Deployments using cloudpickle.loads() for KVStore value deserialization

Discovery Timeline

  • 2026-05-12 - CVE-2026-31234 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-31234

Vulnerability Analysis

Horovod uses a KVStore HTTP server to coordinate state between distributed workers during training. The server exposes simple HTTP endpoints where workers PUT serialized values under named keys and GET them back when needed. The server does not enforce authentication, authorization, or value integrity checks. Any host able to reach the KVStore port can write arbitrary bytes under any key.

When a worker reads a value, it passes the response body directly into cloudpickle.loads(). Python's pickle protocol allows arbitrary callables to be invoked through __reduce__ during deserialization. An attacker who writes a crafted pickle payload before the legitimate writer wins the race causes the victim worker to execute attacker-controlled Python code in its own process context. This typically grants the attacker access to training data, model weights, GPU resources, and credentials available to the worker process.

Root Cause

The root cause combines two design flaws. First, the KVStore HTTP server omits authentication and authorization, treating any HTTP client as trusted. Second, the consuming code calls cloudpickle.loads() on untrusted bytes without integrity validation such as a signed digest or transport authentication. Either control alone would block exploitation. Their joint absence converts a coordination channel into an unauthenticated code execution primitive.

Attack Vector

The attacker reaches the KVStore HTTP port over the network and issues an HTTP PUT containing a malicious pickle payload under a key the victim worker is expected to read. When the worker performs its scheduled GET, cloudpickle.loads() reconstructs the payload object and triggers attacker-supplied callables. The race window depends on training topology, but distributed jobs frequently have predictable key names and read timings. No user interaction or prior credentials are required. See the Horovod project repository and the CVE analysis notes for additional context.

Detection Methods for CVE-2026-31234

Indicators of Compromise

  • HTTP PUT requests to the Horovod KVStore port from hosts outside the expected worker set
  • KVStore values whose byte prefix matches pickle opcodes (\\x80\\x04 or \\x80\\x05) but did not originate from a known worker process
  • Worker processes spawning unexpected child processes such as sh, bash, python -c, or outbound network utilities immediately after a KVStore GET
  • Unexpected outbound connections from training nodes to attacker infrastructure during job startup

Detection Strategies

  • Inspect network flow logs for connections to the KVStore HTTP port originating outside the training cluster subnet
  • Hunt for Python worker processes invoking os.system, subprocess.Popen, or socket calls shortly after KVStore reads
  • Correlate Horovod worker logs with EDR process telemetry to identify deserialization events followed by anomalous child processes

Monitoring Recommendations

  • Enable verbose logging on the KVStore server to record source IP, key, and payload size for every PUT and GET
  • Alert on any KVStore client IP that is not a member of the authorized training node list
  • Forward worker process telemetry to a centralized data lake and apply identification rules for post-deserialization command execution patterns

How to Mitigate CVE-2026-31234

Immediate Actions Required

  • Restrict KVStore HTTP server exposure to a private, isolated network segment reachable only by authorized training workers
  • Apply host firewall rules or Kubernetes NetworkPolicies that block KVStore ports from all non-worker sources
  • Audit running Horovod deployments for unauthorized PUT activity against KVStore keys before assuming integrity

Patch Information

No fixed version is identified in the published CVE record for Horovod at the time of writing. Monitor the Horovod GitHub repository for security releases and upgrade as soon as a patched version is published. Until then, treat all KVStore traffic as untrusted and rely on network-level controls.

Workarounds

  • Place the KVStore server behind a mutually authenticated TLS tunnel or a service mesh that enforces workload identity
  • Replace the HTTP coordination backend with an authenticated alternative such as a managed key-value store with access controls
  • Sign KVStore payloads with an HMAC keyed to the training job and reject values that fail verification before calling cloudpickle.loads()
  • Run Horovod workers under minimal-privilege service accounts with no outbound internet access to limit post-exploitation impact
bash
# Configuration example: restrict KVStore port to worker subnet only
# Replace 10.0.0.0/24 with your training cluster CIDR and 8080 with the KVStore port
iptables -A INPUT -p tcp --dport 8080 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 8080 -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/TechHorovod

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.61%

  • 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 Project Repository

  • Notion CVE Analysis
  • Related CVEs
  • CVE-2024-10190: Horovod RCE 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