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

CVE-2026-22612: Fickling Detection Bypass Vulnerability

CVE-2026-22612 is a detection bypass flaw in Fickling, a Python pickling decompiler and static analyzer, caused by builtins blindness. This article covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2026-22612 Overview

CVE-2026-22612 is an Insecure Deserialization detection bypass vulnerability in Fickling, a Python pickling decompiler and static analyzer developed by Trail of Bits. Prior to version 0.1.7, Fickling is vulnerable to detection bypass due to "builtins" blindness, which allows malicious pickle payloads to evade security analysis by leveraging Python's built-in module handling.

Critical Impact

Attackers can craft malicious pickle payloads that bypass Fickling's security analysis, potentially allowing arbitrary code execution to go undetected in environments relying on Fickling for pickle file inspection.

Affected Products

  • Fickling versions prior to 0.1.7
  • Python applications using vulnerable Fickling versions for pickle analysis
  • Security pipelines relying on Fickling for malicious pickle detection

Discovery Timeline

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

Technical Details for CVE-2026-22612

Vulnerability Analysis

This vulnerability stems from how Fickling's interpreter handles imports from Python's builtins modules. The flaw exists in the run method of the import handling code, where the analyzer explicitly skipped emitting AST (Abstract Syntax Tree) nodes for imports from __builtin__, __builtins__, or builtins modules. This design decision created a blind spot in the static analysis capabilities, as dangerous operations imported from builtins would not be properly tracked or flagged during analysis.

The vulnerability is classified under CWE-502 (Deserialization of Untrusted Data) because it enables malicious pickle payloads to circumvent the very tool designed to detect pickle-based attacks. Python's pickle module is notoriously dangerous as it can execute arbitrary code during deserialization, and Fickling was created to help identify such threats. This bypass undermines that protection.

Root Cause

The root cause lies in the conditional logic that intentionally excluded builtins imports from AST emission. The original implementation assumed that builtins imports were safe and unnecessary to track, but this assumption allowed attackers to craft payloads using builtins functions that would not appear in Fickling's analysis output, effectively hiding malicious operations.

Attack Vector

An attacker can create a malicious pickle file that imports dangerous functions from Python's builtins modules. When this pickle is analyzed by a vulnerable version of Fickling, the imports from builtins are silently ignored and not included in the decompiled output. This allows the malicious payload to pass security inspection undetected. The attack is network-accessible as pickle files can be transmitted over various protocols and analyzed by automated security pipelines.

python
# Security patch in fickling/fickle.py - Emit AST nodes for builtins imports
 
     def run(self, interpreter: Interpreter):
         module, attr = self.module, self.attr
-        if module in ("__builtin__", "__builtins__", "builtins"):
-            # no need to emit an import for builtins!
-            pass
-        else:
-            alias = ast.alias(attr)
-            interpreter.module_body.append(ast.ImportFrom(module=module, names=[alias], level=0))
+        alias = ast.alias(attr)
+        interpreter.module_body.append(ast.ImportFrom(module=module, names=[alias], level=0))
         interpreter.stack.append(ast.Name(attr, ast.Load()))
 
     def encode(self) -> bytes:

Source: GitHub Commit Update

Detection Methods for CVE-2026-22612

Indicators of Compromise

  • Pickle files containing references to __builtin__, __builtins__, or builtins modules that were previously analyzed by Fickling without alerts
  • Discrepancies between Fickling analysis output and actual pickle payload behavior
  • Presence of suspicious pickle operations that execute code via builtins functions

Detection Strategies

  • Review previously analyzed pickle files with updated Fickling version 0.1.7 to identify any payloads that may have bypassed detection
  • Implement secondary validation using Python's pickletools module to cross-reference Fickling analysis results
  • Monitor for pickle deserialization events in environments where previously "cleared" pickle files are being processed

Monitoring Recommendations

  • Enable logging for all pickle deserialization operations in production environments
  • Implement alerts for any pickle operations involving builtins module imports
  • Conduct periodic re-analysis of trusted pickle files using updated security tooling

How to Mitigate CVE-2026-22612

Immediate Actions Required

  • Upgrade Fickling to version 0.1.7 or later immediately
  • Re-analyze any pickle files that were previously scanned with vulnerable Fickling versions
  • Consider temporarily blocking pickle file processing until the update is applied in security-critical environments

Patch Information

The vulnerability has been patched in Fickling version 0.1.7. The fix removes the conditional logic that skipped AST emission for builtins imports, ensuring all imports are properly tracked during analysis. The patch commit (9f309ab834797f280cb5143a2f6f987579fa7cdf) is available on GitHub.

For detailed patch information, refer to:

  • GitHub Release v0.1.7
  • GitHub Security Advisory GHSA-h4rm-mm56-xf63

Workarounds

  • Use alternative pickle analysis tools in conjunction with Fickling until upgrade is complete
  • Implement manual inspection of pickle files for builtins references as an additional layer
  • Consider blocking untrusted pickle files at the network perimeter until patching is complete
bash
# Upgrade Fickling to patched version
pip install --upgrade fickling>=0.1.7

# Verify installed version
pip show fickling | grep Version

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechFickling

  • SeverityHIGH

  • CVSS Score8.9

  • EPSS Probability0.04%

  • 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-502
  • Technical References
  • GitHub Commit Update

  • GitHub Release v0.1.7

  • GitHub Security Advisory GHSA-h4rm-mm56-xf63
  • Related CVEs
  • CVE-2026-22607: Fickling Python RCE Vulnerability

  • CVE-2026-22608: Fickling Python Pickling RCE Vulnerability

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

  • CVE-2026-22609: Fickling Python Analyzer RCE 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