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
    • 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-2025-61622

CVE-2025-61622: Apache Fory RCE Vulnerability

CVE-2025-61622 is a remote code execution flaw in Apache Fory caused by unsafe deserialization in pyfory and pyfury. Attackers can exploit this to execute arbitrary code. This article covers technical details, affected versions, impact, and mitigation steps.

Published: March 18, 2026

CVE-2025-61622 Overview

CVE-2025-61622 is a critical insecure deserialization vulnerability affecting Apache Fory's Python serialization library (pyfory). The vulnerability exists in pyfory versions 0.12.0 through 0.12.2, as well as the legacy pyfury versions from 0.1.0 through 0.10.3. Applications that process pyfory serialized data from untrusted sources are susceptible to arbitrary code execution through exploitation of the pickle-fallback serializer mechanism.

Critical Impact

This vulnerability allows unauthenticated remote attackers to achieve arbitrary code execution by crafting malicious serialized data that forces the application to use the vulnerable pickle.loads function, potentially leading to complete system compromise.

Affected Products

  • Apache Fory pyfory versions 0.12.0 through 0.12.2
  • Apache Fory legacy pyfury versions 0.1.0 through 0.10.3

Discovery Timeline

  • 2025-10-01 - CVE-2025-61622 published to NVD
  • 2025-12-03 - Last updated in NVD database

Technical Details for CVE-2025-61622

Vulnerability Analysis

This vulnerability stems from an insecure deserialization flaw (CWE-502) in the Apache Fory Python serialization library. The core issue lies in the library's implementation of a pickle-fallback mechanism that can be triggered during the deserialization process. When an application deserializes data from an untrusted source using pyfory, an attacker can craft a malicious data stream that specifically instructs the deserializer to fall back to Python's native pickle module.

Python's pickle.loads() function is inherently unsafe when processing untrusted data, as it can execute arbitrary Python code during object reconstruction. This well-known security concern makes the pickle-fallback feature particularly dangerous in contexts where serialized data may originate from untrusted sources. The vulnerability requires no authentication or user interaction to exploit, and successful exploitation grants the attacker the ability to execute arbitrary code with the privileges of the application processing the malicious data.

Root Cause

The root cause of this vulnerability is the presence of a pickle-fallback serializer in the pyfory library that can be activated through specially crafted input data. The design decision to include pickle as a fallback serialization mechanism introduced an unsafe code path that bypasses any security controls implemented in the primary pyfory serialization format. When the fallback is triggered, the application directly invokes pickle.loads() on attacker-controlled data, enabling arbitrary code execution through pickle's object reconstruction process.

Attack Vector

The attack vector is network-based and requires no privileges or user interaction. An attacker targets applications that accept pyfory serialized data from external sources such as network connections, file uploads, or inter-process communication channels. The attacker crafts a malicious serialized payload that contains instructions to select the pickle-fallback serializer during deserialization. When the vulnerable application processes this payload, it triggers the pickle.loads() function, which then executes the attacker's embedded Python code.

The attack flow typically involves:

  1. Identifying an application that uses pyfory for deserializing external data
  2. Crafting a serialized payload that forces the pickle-fallback mechanism
  3. Embedding malicious Python objects designed to execute code upon unpickling
  4. Sending the malicious payload to the target application
  5. Achieving arbitrary code execution when the application deserializes the data

Detection Methods for CVE-2025-61622

Indicators of Compromise

  • Unexpected process spawning or child processes from applications using pyfory serialization
  • Unusual network connections originating from applications that process serialized data
  • Anomalous file system activity, particularly in temporary directories or sensitive system locations
  • Memory artifacts indicating pickle deserialization of unexpected object types

Detection Strategies

  • Monitor application logs for deserialization errors or unexpected pickle operations
  • Implement network traffic analysis to detect malformed or suspicious serialized payloads
  • Deploy runtime application self-protection (RASP) solutions to detect deserialization attacks
  • Use SentinelOne's behavioral AI to identify anomalous process execution patterns following deserialization operations

Monitoring Recommendations

  • Audit all applications in your environment that depend on pyfory or pyfury Python libraries
  • Implement centralized logging for applications processing external serialized data
  • Configure alerting for any execution of pickle.loads() in production environments
  • Establish baseline behavior for applications using pyfory to detect deviations indicative of exploitation

How to Mitigate CVE-2025-61622

Immediate Actions Required

  • Upgrade pyfory to version 0.12.3 or later immediately, as this version removes the vulnerable pickle-fallback serializer
  • Inventory all applications and services using pyfory or legacy pyfury libraries to determine exposure
  • If immediate patching is not possible, implement network segmentation to limit exposure of vulnerable applications
  • Review application architecture to ensure serialized data from untrusted sources is not processed by vulnerable library versions

Patch Information

Apache has addressed this vulnerability in pyfory version 0.12.3, which completely removes the pickle-fallback serializer mechanism. Users should upgrade to this version or later to remediate the vulnerability. For detailed information, refer to the Apache Mailing List Discussion and the Openwall OSS-Security Update.

Workarounds

  • Restrict network access to applications using vulnerable pyfory versions to trusted sources only
  • Implement input validation layers that reject unexpected serialization formats before reaching pyfory
  • Deploy web application firewalls (WAF) or API gateways configured to inspect and block suspicious serialized payloads
  • Consider temporarily disabling functionality that relies on deserializing external pyfory data until patching is complete
bash
# Upgrade pyfory to patched version
pip install --upgrade pyfory>=0.12.3

# Verify installed version
pip show pyfory | 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 Fory

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.32%

  • 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
  • Openwall OSS-Security Update
  • Vendor Resources
  • Apache Mailing List Discussion
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox 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