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-2020-36187

CVE-2020-36187: Jackson-databind Deserialization Flaw

CVE-2020-36187 is a deserialization vulnerability in FasterXML Jackson-databind 2.x involving serialization gadgets and typing. This article covers the technical details, affected versions, and mitigation strategies.

Published: March 4, 2026

CVE-2020-36187 Overview

CVE-2020-36187 is an insecure deserialization vulnerability in FasterXML jackson-databind 2.x before version 2.9.10.8. The vulnerability stems from improper handling of the interaction between serialization gadgets and typing, specifically related to org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource. When polymorphic type handling is enabled, an attacker can craft malicious JSON payloads that leverage this gadget class to achieve remote code execution on vulnerable systems.

Critical Impact

This vulnerability allows remote attackers to execute arbitrary code on systems processing untrusted JSON input with polymorphic deserialization enabled, potentially leading to complete system compromise.

Affected Products

  • FasterXML jackson-databind (versions prior to 2.9.10.8)
  • NetApp Cloud Backup and Service Level Manager
  • Debian Linux 9.0
  • Oracle Agile PLM, Banking, Communications, and Retail product suites
  • Multiple Oracle enterprise applications including WebCenter Portal and Data Integrator

Discovery Timeline

  • 2021-01-06 - CVE-2020-36187 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-36187

Vulnerability Analysis

This vulnerability belongs to a class of deserialization attacks targeting Jackson's polymorphic type handling feature. Jackson-databind allows applications to deserialize JSON into Java objects, and when polymorphic type handling is enabled (via enableDefaultTyping() or @JsonTypeInfo annotations), the library can instantiate arbitrary classes specified in the JSON input.

The org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource class serves as a gadget chain entry point. When this class is deserialized, it can be manipulated to execute arbitrary code through its setter methods and initialization logic. This is part of a broader pattern of jackson-databind vulnerabilities where new gadget classes are discovered in common Java libraries that can be abused during deserialization.

The attack requires no authentication and can be executed remotely over the network. However, successful exploitation requires that the target application has polymorphic deserialization enabled and processes attacker-controlled JSON data.

Root Cause

The root cause is insufficient validation of class types during polymorphic deserialization. Jackson-databind maintains a blocklist of known dangerous classes to prevent deserialization attacks, but org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource was not included in this blocklist prior to version 2.9.10.8. This allows attackers to specify this class in JSON payloads, which Jackson will then instantiate and populate with attacker-controlled values.

Attack Vector

The attack vector is network-based, requiring the attacker to send crafted JSON payloads to an application endpoint that processes JSON using a vulnerable jackson-databind configuration. The attacker embeds a type indicator in the JSON that instructs Jackson to deserialize the data as a SharedPoolDataSource object. Through carefully crafted property values, the attacker can trigger code execution during object initialization or through subsequent method calls on the instantiated object.

The attack typically involves:

  1. Identifying an application endpoint that accepts JSON input
  2. Confirming the application uses jackson-databind with polymorphic typing enabled
  3. Crafting a malicious JSON payload containing the gadget class reference
  4. Sending the payload to trigger deserialization and code execution

For detailed technical analysis of this vulnerability class, see the Medium Article on Jackson CVEs and GitHub Jackson Issue #2997.

Detection Methods for CVE-2020-36187

Indicators of Compromise

  • JSON payloads containing references to org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource class
  • Unusual JNDI lookups or outbound connections from Java application processes
  • Unexpected process spawning from Java application servers
  • Error logs showing deserialization exceptions for Tomcat DBCP classes in applications that don't normally use them

Detection Strategies

  • Implement application-level logging to capture all incoming JSON payloads containing @class or @type fields
  • Deploy network intrusion detection rules to identify JSON payloads referencing known gadget classes
  • Monitor for unusual Java class loading activity, particularly classes from org.apache.tomcat.dbcp packages
  • Use software composition analysis (SCA) tools to identify vulnerable jackson-databind versions in your application dependencies

Monitoring Recommendations

  • Enable verbose logging on JSON parsing endpoints to capture deserialization attempts
  • Configure SIEM rules to alert on patterns consistent with polymorphic deserialization attacks
  • Monitor outbound network connections from application servers for unexpected JNDI or RMI traffic
  • Implement runtime application self-protection (RASP) to detect and block deserialization gadget chains

How to Mitigate CVE-2020-36187

Immediate Actions Required

  • Upgrade jackson-databind to version 2.9.10.8 or later immediately
  • Audit all applications for use of enableDefaultTyping() or @JsonTypeInfo with unsafe configurations
  • Implement input validation to reject JSON containing unexpected type information
  • Consider using ObjectMapper.setDefaultTyping() with a restricted type validator

Patch Information

FasterXML has released version 2.9.10.8 which adds org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource to the blocklist of classes that cannot be deserialized. Organizations should update their jackson-databind dependencies through their build management system (Maven, Gradle, etc.).

For Oracle products, refer to the Oracle Critical Patch Updates April 2021, Oracle Critical Patch Updates July 2021, Oracle Critical Patch Updates October 2021, Oracle Critical Patch Updates January 2022, and Oracle Critical Patch Updates April 2022 for product-specific patches.

For NetApp products, see the NetApp Security Advisory NTAP-20210205-0005.

For Debian systems, see the Debian LTS Announcement April 2021.

Workarounds

  • Disable polymorphic type handling entirely if not required by your application
  • Use PolymorphicTypeValidator to explicitly whitelist only the classes your application needs to deserialize
  • Implement a custom deserializer that rejects type information in incoming JSON
  • Deploy a web application firewall (WAF) rule to block JSON payloads containing references to known gadget classes
bash
# Maven dependency update example
# Update pom.xml to use patched version:
# <dependency>
#     <groupId>com.fasterxml.jackson.core</groupId>
#     <artifactId>jackson-databind</artifactId>
#     <version>2.9.10.8</version>
# </dependency>

# Verify current jackson-databind version in your project
mvn dependency:tree | grep jackson-databind

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechFasterxml Jackson Databind

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability2.15%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • Medium Article on Jackson CVEs

  • GitHub Jackson Issue #2997

  • Debian LTS Announcement April 2021

  • NetApp Security Advisory NTAP-20210205-0005

  • Oracle Critical Patch Updates April 2021

  • Oracle Critical Patch Updates July 2022
  • Vendor Resources
  • Oracle Critical Patch Updates July 2021

  • Oracle Critical Patch Updates April 2022

  • Oracle Critical Patch Updates January 2022

  • Oracle Critical Patch Updates October 2021
  • Related CVEs
  • CVE-2020-35728: Jackson-databind RCE Vulnerability

  • CVE-2022-42003: Jackson-databind DOS Vulnerability

  • CVE-2020-25649: Fasterxml Jackson-databind XXE 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