Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI 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-2020-22083

CVE-2020-22083: Jsonpickle Deserialization RCE Vulnerability

CVE-2020-22083 is a remote code execution vulnerability in Jsonpickle through version 1.4.1 that allows attackers to execute arbitrary code during deserialization. This article covers technical details, affected versions, and mitigation.

Published: March 4, 2026

CVE-2020-22083 Overview

CVE-2020-22083 is an insecure deserialization vulnerability in jsonpickle through version 1.4.1 that allows remote code execution during deserialization of a malicious payload through the decode() function. The jsonpickle library is a Python library used to serialize complex Python objects to JSON and deserialize them back. When processing untrusted input, attackers can craft malicious payloads that execute arbitrary code upon deserialization.

It should be noted that this behavior has been argued by some to be expected and documented—pickle-based serialization is known to be capable of causing arbitrary code execution and must not be used with untrusted data. However, the critical nature of the impact when applications do process untrusted input makes this a significant security concern.

Critical Impact

Remote attackers can achieve arbitrary code execution by sending maliciously crafted JSON payloads to applications using jsonpickle's decode() function with untrusted data, potentially leading to complete system compromise.

Affected Products

  • jsonpickle versions through 1.4.1
  • Applications using jsonpickle to deserialize untrusted user input
  • Python environments with jsonpickle dependency for JSON serialization/deserialization

Discovery Timeline

  • 2020-12-17 - CVE-2020-22083 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-22083

Vulnerability Analysis

This vulnerability falls under CWE-502 (Deserialization of Untrusted Data). The jsonpickle library extends Python's pickle serialization capabilities to produce JSON output. Like pickle, jsonpickle can reconstruct arbitrary Python objects during deserialization, including objects with __reduce__ methods that can execute arbitrary code.

When an application uses jsonpickle.decode() to deserialize JSON data from an untrusted source, an attacker can craft a payload containing serialized Python objects that, upon reconstruction, execute malicious code. This is particularly dangerous because the JSON format appears benign compared to binary pickle data, potentially leading developers to incorrectly assume jsonpickle is safe for processing untrusted input.

The attack is network-accessible, requires no authentication or user interaction, and can result in complete compromise of confidentiality, integrity, and availability on the target system.

Root Cause

The root cause is the inherent design of pickle-based serialization in Python, which jsonpickle leverages. Python's pickle module is designed to serialize and deserialize arbitrary Python objects, including code execution capabilities through special methods like __reduce__(). When jsonpickle deserializes a JSON payload, it reconstructs Python objects including any malicious code embedded within the serialized representation.

The decode() function does not distinguish between trusted and untrusted input sources, making any application that processes external data vulnerable to this attack vector.

Attack Vector

The attack is executed remotely over the network. An attacker crafts a malicious JSON payload containing a serialized Python object that includes code execution logic. When the target application calls jsonpickle.decode() on this payload, the malicious object is reconstructed and its embedded code is executed in the context of the application.

The exploitation typically involves crafting a payload that leverages Python's __reduce__ method to specify arbitrary function calls during object reconstruction. Common exploitation targets include executing system commands via os.system(), subprocess.Popen(), or similar functions.

For detailed exploitation techniques and payload generation, refer to the Versprite Blog on jsonpickle Exploitation and the GitHub Python Deserialization Tool.

Detection Methods for CVE-2020-22083

Indicators of Compromise

  • Unexpected process spawning from Python application processes, particularly shell commands or system utilities
  • Network connections originating from Python processes to unknown external hosts
  • Unusual file system modifications in application directories or system paths
  • Log entries showing deserialization errors or unusual JSON payload structures containing Python object references

Detection Strategies

  • Monitor for jsonpickle.decode() calls processing data from external sources such as HTTP requests, message queues, or file uploads
  • Implement application-level logging to capture incoming JSON payloads before deserialization for forensic analysis
  • Use static analysis tools to identify code paths where untrusted input reaches jsonpickle.decode() calls
  • Deploy runtime application self-protection (RASP) solutions that can detect and block suspicious deserialization patterns

Monitoring Recommendations

  • Configure endpoint detection and response (EDR) solutions to alert on child process creation from Python application processes
  • Monitor network egress for connections initiated by Python processes that should not have outbound network requirements
  • Implement file integrity monitoring on critical system directories to detect unauthorized modifications
  • Review application logs for JSON payloads containing suspicious keys like py/object, py/reduce, or references to dangerous modules such as os, subprocess, or commands

How to Mitigate CVE-2020-22083

Immediate Actions Required

  • Audit all application code to identify uses of jsonpickle.decode() with untrusted input sources
  • Replace jsonpickle with standard json module for deserializing untrusted data where complex object serialization is not required
  • Implement strict input validation and sanitization before any deserialization operations
  • Consider using jsonpickle's safe mode or restricted unpicklers where available for controlled deserialization scenarios

Patch Information

The jsonpickle maintainers have indicated this is documented expected behavior consistent with pickle's security model. Applications should not use jsonpickle to deserialize untrusted data. For more information, see the GitHub jsonpickle Issue Discussion and the Red Hat CVE Security Advisory.

Organizations should implement architectural changes to avoid deserializing untrusted data with jsonpickle rather than waiting for a library-level fix.

Workarounds

  • Use Python's standard json library instead of jsonpickle for processing any untrusted JSON input
  • Implement a whitelist-based approach if jsonpickle must be used, validating that incoming data does not contain serialized object references before deserialization
  • Deploy network segmentation to limit the impact of potential code execution by restricting what compromised application processes can access
  • Run applications using jsonpickle with minimal privileges and in sandboxed environments to contain potential exploitation
bash
# Example: Check for jsonpickle usage in your Python codebase
grep -r "jsonpickle.decode" --include="*.py" /path/to/application/

# Example: Search for vulnerable patterns in dependencies
pip show jsonpickle | grep Version
# If version <= 1.4.1, review usage patterns for untrusted input processing

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechJsonpickle

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability4.70%

  • 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
  • Red Hat CVE Security Advisory

  • GitHub Gist for Payload Generation

  • GitHub Python Deserialization Tool

  • GitHub jsonpickle Issue Discussion

  • GitHub jsonpickle Issue Comment

  • Versprite Blog on jsonpickle Exploitation
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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