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
    • 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-2023-47248

CVE-2023-47248: Apache PyArrow RCE Vulnerability

CVE-2023-47248 is a remote code execution vulnerability in Apache PyArrow affecting versions 0.14.0 to 14.0.0. Untrusted data deserialization enables arbitrary code execution. This article covers technical details, impact, and mitigation.

Published: February 11, 2026

CVE-2023-47248 Overview

CVE-2023-47248 is a critical insecure deserialization vulnerability affecting Apache PyArrow versions 0.14.0 through 14.0.0. The vulnerability exists in the IPC and Parquet readers, allowing arbitrary code execution when an application processes Arrow IPC, Feather, or Parquet data from untrusted sources such as user-supplied input files.

This vulnerability specifically impacts PyArrow and does not affect other Apache Arrow implementations or language bindings. The flaw stems from unsafe deserialization practices in the PyExtensionType autoload functionality, which can be exploited to execute malicious code during data processing.

Critical Impact

Successful exploitation allows remote attackers to achieve arbitrary code execution on systems that process untrusted Arrow IPC, Feather, or Parquet files, potentially leading to complete system compromise.

Affected Products

  • Apache PyArrow versions 0.14.0 through 14.0.0
  • Applications processing Arrow IPC data from untrusted sources
  • Applications processing Feather or Parquet files from untrusted sources

Discovery Timeline

  • 2023-11-09 - CVE-2023-47248 published to NVD
  • 2025-02-13 - Last updated in NVD database

Technical Details for CVE-2023-47248

Vulnerability Analysis

CVE-2023-47248 represents a dangerous insecure deserialization vulnerability classified under CWE-502 (Deserialization of Untrusted Data). The vulnerability allows attackers to execute arbitrary code by crafting malicious Arrow IPC, Feather, or Parquet files that exploit the automatic type loading mechanism in PyArrow.

When PyArrow processes data files, it automatically deserializes extension type metadata. This automatic deserialization occurs without proper validation of the serialized data, creating an opportunity for attackers to inject malicious payloads. The attack requires no privileges and can be executed remotely if an application accepts file uploads or processes files from network sources.

The impact is severe as successful exploitation grants the attacker the same privileges as the application processing the malicious file, potentially leading to data theft, system compromise, or lateral movement within a network.

Root Cause

The root cause of this vulnerability lies in the PyExtensionType autoload functionality within PyArrow's deserialization routines. The library automatically loads and instantiates Python extension types when reading IPC data without adequate security controls. This design allows maliciously crafted serialized objects to be deserialized and instantiated, triggering arbitrary code execution.

The vulnerable code path exists in python/pyarrow/types.pxi, where extension type metadata is processed during file reading operations without validating the safety of the deserialized content.

Attack Vector

The attack vector is network-based, requiring the victim application to process a maliciously crafted file. Attack scenarios include:

  1. File Upload Attacks: Applications accepting user-uploaded Parquet or Feather files for data processing
  2. Data Pipeline Poisoning: Compromising data sources that feed into analytics pipelines using PyArrow
  3. Supply Chain Attacks: Distributing malicious data files through shared datasets or data marketplaces

The security patch disables the automatic PyExtensionType autoload functionality to prevent unsafe deserialization:

text
     Parameters
     ----------
     storage_type : DataType
+        The underlying storage type for the extension type.
     extension_name : str
+        A unique name distinguishing this extension type. The name will be
+        used when deserializing IPC data.
 
     Examples
     --------

Source: GitHub Apache Arrow Commit

Detection Methods for CVE-2023-47248

Indicators of Compromise

  • Unexpected process spawning from applications that process Arrow/Parquet/Feather files
  • Unusual network connections originating from data processing applications
  • Anomalous file system activity following Parquet or Feather file processing
  • Memory anomalies or crashes in PyArrow-dependent applications

Detection Strategies

  • Monitor for suspicious Python process behavior including unexpected child processes or network connections
  • Implement file integrity monitoring for applications processing untrusted data files
  • Deploy application-level logging to track Parquet and Feather file processing activities
  • Use SentinelOne's behavioral AI to detect anomalous code execution patterns following file operations

Monitoring Recommendations

  • Audit all applications using PyArrow to identify vulnerable versions in your environment
  • Implement strict input validation for file upload functionality accepting Arrow data formats
  • Enable enhanced logging for data pipeline applications to capture file processing events
  • Deploy endpoint detection to monitor for exploitation attempts targeting PyArrow vulnerabilities

How to Mitigate CVE-2023-47248

Immediate Actions Required

  • Upgrade PyArrow to version 14.0.1 or later immediately
  • Audit all applications and dependencies that use PyArrow for vulnerable versions
  • Review data ingestion pipelines that process untrusted Parquet, Feather, or Arrow IPC files
  • Implement input validation to restrict file processing to trusted sources only

Patch Information

Apache has released PyArrow version 14.0.1 which addresses this vulnerability. The fix is available via PyPI and conda-forge. For detailed patch information, see the GitHub Apache Arrow Commit.

Downstream library maintainers should update their dependency requirements to specify PyArrow 14.0.1 or later to ensure consumers receive the patched version.

Workarounds

  • Install the pyarrow-hotfix package from PyPI if immediate upgrade is not possible
  • Restrict file processing to trusted sources only until patching is complete
  • Implement network segmentation to isolate data processing applications
  • Consider sandboxing applications that must process untrusted Arrow data files
bash
# Install the hotfix package for older PyArrow versions
pip install pyarrow-hotfix

# Or upgrade directly to the patched version
pip install pyarrow>=14.0.1

# Verify the installed version
pip show pyarrow | grep Version

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechApache Pyarrow

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability85.64%

  • 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
  • Apache Mailing List Discussion

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • PyPI pyarrow-hotfix Release
  • Vendor Resources
  • GitHub Apache Arrow Commit
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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