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

CVE-2026-22606: Fickling Python Library RCE Vulnerability

CVE-2026-22606 is a remote code execution flaw in Fickling, a Python pickling decompiler, that misclassifies malicious pickles using runpy module. This post covers the technical details, affected versions, and mitigation steps.

Updated: January 22, 2026

CVE-2026-22606 Overview

CVE-2026-22606 is an Insecure Deserialization vulnerability in Fickling, a Python pickling decompiler and static analyzer developed by Trail of Bits. Fickling versions up to and including 0.1.6 fail to classify Python's runpy module as unsafe, resulting in malicious pickles that leverage runpy.run_path() or runpy.run_module() being incorrectly labeled as SUSPICIOUS instead of OVERTLY_MALICIOUS. This misclassification can lead users who rely on Fickling's security assessments to inadvertently execute attacker-controlled code on their systems.

Critical Impact

Users relying on Fickling as a security gate for pickle deserialization may unknowingly execute malicious code due to the misclassification of dangerous runpy module calls, potentially leading to full system compromise.

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 pickle file safety analysis

Discovery Timeline

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

Technical Details for CVE-2026-22606

Vulnerability Analysis

This vulnerability stems from an incomplete blocklist implementation (CWE-184: Incomplete List of Disallowed Inputs) within Fickling's static analysis engine. When analyzing pickle files for potentially dangerous operations, Fickling maintains a list of Python modules and functions that are considered unsafe. However, versions through 0.1.6 did not include Python's built-in runpy module in this list despite its capability to execute arbitrary Python code.

The runpy module provides the run_path() and run_module() functions, which can execute arbitrary Python scripts and modules respectively. An attacker can craft a malicious pickle that invokes these functions to achieve code execution when the pickle is deserialized. Because Fickling fails to recognize these calls as overtly malicious, users who trust Fickling's analysis may proceed to deserialize what they believe is a merely suspicious but not definitely dangerous pickle file.

Root Cause

The root cause is an incomplete allowlist/blocklist implementation in Fickling's threat classification logic. The runpy module, despite being a native Python module capable of executing arbitrary code, was not included in Fickling's list of dangerous modules. This oversight in the threat detection taxonomy allows attackers to bypass Fickling's security classification by using runpy functions instead of more commonly flagged dangerous operations like os.system() or subprocess.Popen().

Attack Vector

The attack is network-based and requires no authentication or user interaction beyond the victim's reliance on Fickling for security decisions. An attacker can craft a malicious pickle file containing calls to runpy.run_path() or runpy.run_module() and distribute it through any channel where pickle files might be exchanged (model repositories, data pipelines, file shares, etc.).

When a user analyzes this pickle with a vulnerable version of Fickling, the tool classifies it as SUSPICIOUS rather than OVERTLY_MALICIOUS. If the user's security workflow permits deserialization of suspicious pickles—or if they interpret the lower threat level as acceptable risk—the malicious payload executes with the privileges of the deserializing process. The runpy.run_path() function can execute any Python script specified by path, while runpy.run_module() can run any available Python module, both providing full code execution capabilities.

Detection Methods for CVE-2026-22606

Indicators of Compromise

  • Pickle files containing references to the runpy module or its functions (run_path, run_module)
  • Unexpected Python process spawning following pickle deserialization operations
  • Fickling analysis logs showing SUSPICIOUS classification for pickles that subsequently execute code
  • Network connections or file system modifications occurring after loading pickle files

Detection Strategies

  • Audit all pickle files for runpy module references regardless of Fickling's classification output
  • Implement secondary analysis using manual inspection or alternative tools for pickles classified as SUSPICIOUS
  • Monitor process execution chains for Python processes spawned from pickle deserialization contexts
  • Review Fickling version in CI/CD pipelines and security tooling to ensure 0.1.7 or later is deployed

Monitoring Recommendations

  • Enable verbose logging for all pickle deserialization operations in production environments
  • Set up alerts for any pickle file analysis results, treating SUSPICIOUS classifications with the same urgency as OVERTLY_MALICIOUS
  • Monitor file integrity on systems processing pickle files from untrusted sources
  • Track Python interpreter child process creation as potential indicators of pickle-based exploitation

How to Mitigate CVE-2026-22606

Immediate Actions Required

  • Upgrade Fickling to version 0.1.7 or later immediately across all environments
  • Re-analyze any pickle files previously classified as SUSPICIOUS using the patched version
  • Treat all SUSPICIOUS classifications from vulnerable Fickling versions as potentially malicious pending re-analysis
  • Audit systems that may have deserialized pickles based on vulnerable Fickling assessments

Patch Information

Trail of Bits has released Fickling version 0.1.7 which addresses this vulnerability by adding the runpy module to the list of unsafe modules. The fix ensures that pickles containing runpy.run_path() or runpy.run_module() calls are correctly classified as OVERTLY_MALICIOUS. The patch is available through the GitHub Release v0.1.7 and can be installed via pip. The specific commit addressing this issue adds runpy to the threat classification rules.

Workarounds

  • Manually inspect pickle files for runpy module references before trusting Fickling's classification
  • Implement a secondary blocklist check that flags any pickle containing runpy references as malicious
  • Avoid deserializing any pickle files classified as SUSPICIOUS until upgrade to 0.1.7 is complete
  • Consider using pickle alternatives like JSON for data serialization where pickle's capabilities are not strictly required
bash
# Upgrade Fickling to patched version
pip install --upgrade fickling>=0.1.7

# Verify installed version
pip show fickling | grep Version

# Re-analyze previously scanned pickle files
fickling --check-safety suspicious_pickle.pkl

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 Update

  • GitHub Release v0.1.7

  • GitHub Security Advisory GHSA-wfq2-52f7-7qvj
  • Related CVEs
  • CVE-2026-22607: Fickling Python RCE Vulnerability

  • CVE-2026-22608: Fickling Python Pickling 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