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-41486

CVE-2026-41486: Ray AI Compute Engine RCE Vulnerability

CVE-2026-41486 is a remote code execution vulnerability in Ray AI compute engine affecting versions 2.54.0 to 2.55.0. Attackers exploit Arrow extension types to execute arbitrary code. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 18, 2026

CVE-2026-41486 Overview

CVE-2026-41486 is a remote code execution vulnerability in Ray, an open-source AI compute engine maintained by the Ray project. The flaw affects Ray Data versions 2.54.0 up to (but not including) 2.55.0. Ray Data registers custom Arrow extension types (ray.data.arrow_tensor, ray.data.arrow_tensor_v2, ray.data.arrow_variable_shaped_tensor) globally in PyArrow. When PyArrow reads a Parquet file containing one of these extension types, it invokes __arrow_ext_deserialize__ on the field's metadata bytes. Ray's implementation passes those bytes directly to cloudpickle.loads(), triggering arbitrary code execution during schema parsing before any row data is read. The issue is classified under [CWE-94] (Improper Control of Generation of Code).

Critical Impact

A malicious Parquet file can execute attacker-controlled Python code in the Ray worker process the moment its schema is parsed, with no row data access required.

Affected Products

  • Ray Data 2.54.0
  • Ray Data versions up to (but not including) 2.55.0
  • Any application that reads untrusted Parquet files using Ray Data with these versions installed

Discovery Timeline

  • 2026-05-08 - CVE-2026-41486 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-41486

Vulnerability Analysis

The vulnerability lives in Ray Data's tensor extension implementation in python/ray/data/_internal/tensor_extensions/arrow.py. Ray registers three custom PyArrow extension types globally at import time. PyArrow stores per-field metadata for extension types inside the Parquet schema. When a consumer opens a Parquet file, PyArrow looks up the registered extension class and calls its __arrow_ext_deserialize__(storage_type, serialized) method, passing the raw bytes from the file. Ray's implementation forwards serialized directly to cloudpickle.loads(), which fully deserializes arbitrary Python objects, including __reduce__ gadgets that execute code. Because extension type registration is process-global, any code path that reads a Parquet file in a Python process with Ray Data imported is vulnerable, not only explicit ray.data.read_parquet calls.

Root Cause

The root cause is the unsafe use of cloudpickle.loads() on attacker-controlled bytes inside __arrow_ext_deserialize__. Pickle-family deserializers must never operate on untrusted input, and Arrow extension metadata travels with the file. The fix in pull request #62056 replaces pickle-based deserialization with a safe parser and is shipped in Ray 2.55.0.

Attack Vector

An attacker crafts a Parquet file whose schema declares a field using one of Ray's registered extension type names and embeds a malicious pickle payload in the extension metadata. The attacker then induces a victim Ray cluster, data pipeline, or notebook to read that file from a shared object store, S3 bucket, dataset registry, or HTTP URL. Code execution occurs during schema parsing, before any filtering, projection, or row read, so even a read_parquet followed by .schema() is sufficient.

python
# Patch excerpt: python/ray/data/_internal/tensor_extensions/arrow.py
# Source: https://github.com/ray-project/ray/commit/c02bd31ae31996805868baa446a131a8d304525f
 import functools
 import json
 import logging
+import os
 import sys
 import threading
 import warnings

The full patch removes the cloudpickle.loads() call path from __arrow_ext_deserialize__ and introduces a structured deserializer. See the security advisory GHSA-mw35-8rx3-xf9r for the complete diff.

Detection Methods for CVE-2026-41486

Indicators of Compromise

  • Parquet files whose schema metadata references ray.data.arrow_tensor, ray.data.arrow_tensor_v2, or ray.data.arrow_variable_shaped_tensor extension names from untrusted sources.
  • Ray worker or driver processes spawning unexpected child processes such as sh, bash, python -c, curl, or wget immediately after a read_parquet operation.
  • Outbound network connections from Ray nodes to unknown hosts shortly after dataset ingestion.

Detection Strategies

  • Inventory all Python environments and container images and flag any with ray==2.54.* installed alongside pyarrow.
  • Scan Parquet files at ingestion using a tool that inspects Arrow schema metadata and rejects files whose extension type payloads contain pickle opcodes (bytes beginning with \\x80).
  • Enable Python audit hooks (sys.addaudithook) on Ray workers to log pickle.find_class events during Parquet reads.

Monitoring Recommendations

  • Forward Ray driver, worker, and dashboard logs to a centralized analytics platform and alert on process-execution anomalies tied to dataset operations.
  • Monitor egress traffic from Ray clusters and baseline expected destinations for object storage; alert on deviations.
  • Track Ray version metadata across the fleet and alert when vulnerable versions appear after a patch deadline.

How to Mitigate CVE-2026-41486

Immediate Actions Required

  • Upgrade Ray to version 2.55.0 or later on all driver, worker, and head nodes, then rebuild and redeploy any container images that pin earlier versions.
  • Treat Parquet files from external partners, public buckets, and shared dataset hubs as untrusted until the upgrade is complete.
  • Audit recent Ray Data jobs that ingested third-party Parquet data on vulnerable versions and review host telemetry for signs of code execution.

Patch Information

The fix is delivered in Ray 2.55.0 via pull request #62056 and commit c02bd31. The patched __arrow_ext_deserialize__ no longer calls cloudpickle.loads() on file-supplied bytes. Full advisory details are in GHSA-mw35-8rx3-xf9r.

Workarounds

  • If upgrading immediately is not possible, restrict Ray Data ingestion to Parquet files produced by trusted internal pipelines and block reads from external object storage.
  • Run Ray workers under least-privilege service accounts and within sandboxed containers with no outbound internet access to limit blast radius.
  • Pre-validate Parquet schemas with a hardened Arrow reader in an isolated process that has pickle disabled before handing files to Ray.
bash
# Upgrade Ray Data to the patched release
pip install --upgrade "ray[data]>=2.55.0"

# Verify the installed version
python -c "import ray; print(ray.__version__)"

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechRay

  • SeverityHIGH

  • CVSS Score8.9

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-94
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request

  • GitHub Release 2.55.0

  • GitHub Security Advisory GHSA-mw35-8rx3-xf9r
  • Related CVEs
  • CVE-2025-62593: Ray AI Compute Engine 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