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-2026-22607

CVE-2026-22607: Fickling Python RCE Vulnerability

CVE-2026-22607 is a remote code execution flaw in Fickling Python library up to version 0.1.6 that misclassifies malicious pickles using cProfile. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2026-22607 Overview

CVE-2026-22607 is an Insecure Deserialization vulnerability affecting Fickling, a Python pickling decompiler and static analyzer developed by Trail of Bits. The vulnerability exists in versions up to and including 0.1.6, where the tool fails to properly classify Python's cProfile module as unsafe during pickle analysis.

When analyzing potentially malicious pickle files, Fickling incorrectly classifies pickles that use cProfile.run() as SUSPICIOUS instead of OVERTLY_MALICIOUS. This misclassification creates a critical security gap for organizations and developers relying on Fickling as a security gate for pickle deserialization workflows, potentially leading to arbitrary code execution.

Critical Impact

Attackers can craft malicious pickle files that bypass Fickling's security analysis, enabling arbitrary code execution on systems that trust Fickling's classification output for deserialization decisions.

Affected Products

  • Fickling versions 0.1.6 and earlier
  • Any workflow or product using Fickling as a security gate for pickle deserialization
  • Python applications relying on Fickling for malicious pickle detection

Discovery Timeline

  • 2026-01-10 - CVE CVE-2026-22607 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2026-22607

Vulnerability Analysis

The vulnerability stems from an incomplete allowlist (CWE-184: Incomplete List of Disallowed Inputs) in Fickling's unsafe module detection logic. When analyzing pickle files for potentially dangerous operations, Fickling maintains a list of Python modules that should be flagged as overtly malicious when imported or called within a pickle.

The cProfile module, which is part of Python's standard library, provides a mechanism to execute arbitrary Python code through its run() function. This function accepts a string argument containing Python code and executes it with profiling enabled. An attacker can leverage this functionality within a malicious pickle to execute arbitrary commands while evading Fickling's security classification.

When a pickle contains cProfile.run() calls, Fickling versions prior to 0.1.7 would only flag the payload as SUSPICIOUS rather than OVERTLY_MALICIOUS. Users or automated systems that only block OVERTLY_MALICIOUS pickles would inadvertently allow these dangerous payloads to be deserialized and executed.

Root Cause

The root cause is an incomplete list of unsafe Python modules in Fickling's static analyzer. The cProfile module was not included in the set of modules that trigger an OVERTLY_MALICIOUS classification. This oversight allowed pickle payloads utilizing cProfile.run() to bypass the strictest security classification, despite the function being capable of executing arbitrary Python code.

Attack Vector

An attacker can exploit this vulnerability by crafting a malicious pickle file that leverages cProfile.run() to execute arbitrary code. The attack vector is network-based, as malicious pickles can be transmitted via API endpoints, file uploads, or any data exchange mechanism that accepts pickle-serialized data. The attack requires no authentication and can be executed without user interaction on systems that deserialize pickles based on Fickling's security assessment.

The attack workflow involves:

  1. Creating a pickle payload that calls cProfile.run() with malicious Python code
  2. Submitting the payload to a target system that uses Fickling for pre-deserialization security screening
  3. Fickling analyzes the pickle and returns SUSPICIOUS instead of OVERTLY_MALICIOUS
  4. The target system, trusting Fickling's assessment, deserializes the pickle
  5. Arbitrary code execution occurs on the target system

The security patch adds cProfile to the list of unsafe imports in fickling/fickle.py:

python
                 "marshal",
                 "types",
                 "runpy",
+                "cProfile",
             ):
                 yield node
             elif "eval" in (n.name for n in node.names):

Source: GitHub Commit Changes

Detection Methods for CVE-2026-22607

Indicators of Compromise

  • Pickle files containing references to cProfile module or cProfile.run() function calls
  • Deserialization operations following Fickling analysis that returned SUSPICIOUS classification
  • Unexpected process execution or system commands originating from Python pickle deserialization workflows
  • Log entries showing Fickling classifying pickles as SUSPICIOUS when cProfile references are present

Detection Strategies

  • Review Fickling analysis logs for SUSPICIOUS classifications and correlate with cProfile module usage
  • Implement secondary scanning for any pickle flagged as SUSPICIOUS that contains cProfile references
  • Monitor for cProfile.run() function calls during pickle deserialization operations
  • Audit systems using Fickling versions prior to 0.1.7 as security gates

Monitoring Recommendations

  • Enable detailed logging for all pickle deserialization operations in production systems
  • Configure alerts for any pickle classified as SUSPICIOUS to trigger manual review
  • Monitor Python process execution for unexpected cProfile module loading
  • Implement runtime detection for code execution patterns associated with cProfile.run()

How to Mitigate CVE-2026-22607

Immediate Actions Required

  • Upgrade Fickling to version 0.1.7 or later immediately
  • Review all systems and workflows that use Fickling as a security gate for pickle deserialization
  • Audit historical pickle files that were classified as SUSPICIOUS for potential cProfile exploitation
  • Consider temporarily treating all SUSPICIOUS classifications as OVERTLY_MALICIOUS until the patch is applied

Patch Information

The vulnerability has been patched in Fickling version 0.1.7. The fix adds cProfile to the list of unsafe modules that trigger an OVERTLY_MALICIOUS classification when detected in pickle files.

Upgrade using pip:

bash
pip install --upgrade fickling>=0.1.7

For detailed patch information, see the GitHub Security Advisory GHSA-p523-jq9w-64x9 and the GitHub Release v0.1.7.

Workarounds

  • Treat all Fickling SUSPICIOUS classifications as potentially malicious until upgrade is complete
  • Implement additional static analysis to detect cProfile module references in pickle files
  • Avoid deserializing any untrusted pickle data regardless of Fickling's classification
  • Consider sandboxed deserialization environments for pickle files from untrusted sources
bash
# Verify Fickling version after upgrade
pip show fickling | grep Version
# Expected output: Version: 0.1.7 or higher

# Alternative: Pin Fickling version in requirements.txt
echo "fickling>=0.1.7" >> requirements.txt

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechFickling

  • SeverityHIGH

  • CVSS Score8.9

  • EPSS Probability0.07%

  • 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:P/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-184
  • Technical References
  • GitHub Commit Changes

  • GitHub Release v0.1.7

  • GitHub Security Advisory GHSA-p523-jq9w-64x9
  • Related CVEs
  • CVE-2026-22608: Fickling Python Pickling RCE Vulnerability

  • CVE-2026-22606: Fickling Python Library RCE Vulnerability

  • CVE-2026-22609: Fickling Python Analyzer RCE Vulnerability

  • CVE-2026-22612: Fickling Detection Bypass Vulnerability
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