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-2023-35116

CVE-2023-35116: Jackson-databind DoS Vulnerability

CVE-2023-35116 is a denial of service vulnerability in Fasterxml Jackson-databind through version 2.15.2 caused by cyclic dependencies. This article covers the technical details, affected versions, and mitigation strategies.

Published: February 11, 2026

CVE-2023-35116 Overview

CVE-2023-35116 is a denial of service vulnerability affecting jackson-databind through version 2.15.2. The vulnerability allows attackers to cause a denial of service or other unspecified impact via a crafted object that uses cyclic dependencies during serialization operations.

It is important to note that the vendor (FasterXML) disputes this vulnerability report, stating that the steps required to construct a cyclic data structure and attempt to serialize it cannot be achieved by an external attacker in typical usage scenarios. This makes the practical exploitability of this vulnerability highly dependent on application-specific implementation patterns.

Critical Impact

Applications using jackson-databind that serialize untrusted or user-controlled object graphs may be vulnerable to denial of service attacks through resource exhaustion when processing objects with cyclic dependencies.

Affected Products

  • FasterXML jackson-databind versions through 2.15.2

Discovery Timeline

  • June 14, 2023 - CVE CVE-2023-35116 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2023-35116

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The core issue relates to how jackson-databind handles object serialization when encountering cyclic dependencies within data structures.

When a Java object graph contains circular references (where object A references object B, and object B references object A directly or indirectly), the serialization process can enter an infinite loop or consume excessive resources attempting to resolve these dependencies. Without proper cycle detection or depth limits, this can lead to stack overflow errors, memory exhaustion, or CPU resource consumption.

The vulnerability requires local access and specific conditions to exploit, as an attacker would need the ability to construct and inject a malicious object graph into the serialization path of the application. The vendor maintains that external attackers cannot typically achieve these prerequisites in real-world deployments.

Root Cause

The root cause stems from insufficient handling of cyclic object references during the serialization process. When jackson-databind attempts to serialize an object graph containing circular references without explicit cycle detection mechanisms enabled, it may recursively traverse the same objects indefinitely, leading to resource exhaustion.

Jackson-databind does provide mechanisms to handle cyclic dependencies (such as @JsonIdentityInfo annotations), but these must be explicitly configured by developers. The vulnerability manifests when such safeguards are not implemented and untrusted data structures are processed.

Attack Vector

The attack vector is local, requiring the attacker to have the ability to influence the object graph being serialized. This typically means the attacker needs access to:

  1. Application code that deserializes attacker-controlled input into Java objects
  2. A subsequent serialization step that processes these objects
  3. Object types that allow circular reference construction

The attack scenario involves crafting a data structure with cyclic dependencies that, when passed to jackson-databind's serialization methods, causes excessive resource consumption. For detailed technical discussion and vendor response, see the GitHub Issue Discussion.

Detection Methods for CVE-2023-35116

Indicators of Compromise

  • Unusual CPU spikes during JSON serialization operations
  • Stack overflow exceptions in application logs related to jackson-databind serialization
  • Memory exhaustion or OutOfMemoryError exceptions during object serialization
  • Application hangs or timeouts during serialization of user-provided data

Detection Strategies

  • Monitor application logs for StackOverflowError or recursive serialization exceptions involving jackson-databind classes
  • Implement application performance monitoring (APM) to detect abnormal resource consumption patterns during serialization
  • Use static code analysis tools to identify jackson-databind usage without cycle detection configurations
  • Review code for patterns where user-controlled data is deserialized and subsequently serialized

Monitoring Recommendations

  • Set up alerts for unusual memory consumption patterns in applications using jackson-databind
  • Monitor for repeated serialization timeouts or failures in API responses
  • Track CPU utilization anomalies that correlate with JSON processing operations

How to Mitigate CVE-2023-35116

Immediate Actions Required

  • Audit applications to identify where jackson-databind serializes potentially untrusted object graphs
  • Implement @JsonIdentityInfo annotations on classes that may contain circular references
  • Configure serialization depth limits where supported
  • Review and restrict which object types can be serialized from user input

Patch Information

The vendor (FasterXML) has disputed this vulnerability, stating the attack scenario requires attacker control over object construction which is not typically achievable by external attackers. Organizations should evaluate their specific use cases to determine if their applications are at risk.

For the latest information and vendor guidance, consult the GitHub Issue Discussion.

Workarounds

  • Enable cycle detection by annotating classes with @JsonIdentityInfo to handle circular references gracefully
  • Implement custom serializers that include depth checking for complex object graphs
  • Validate and sanitize input data before deserialization to prevent construction of malicious object structures
  • Consider using ObjectMapper configurations that limit serialization depth or handle cycles explicitly
bash
# Configuration example - verify jackson-databind version in Maven projects
mvn dependency:tree | grep jackson-databind

# Check for affected versions in Gradle projects
./gradlew dependencies | grep jackson-databind

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechJackson Databind

  • SeverityMEDIUM

  • CVSS Score4.7

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • GitHub Issue Discussion
  • Related CVEs
  • CVE-2020-36518: Jackson-databind DoS Vulnerability

  • CVE-2021-46877: Jackson-databind DOS Vulnerability

  • CVE-2020-10650: Debian Linux RCE Vulnerability

  • CVE-2020-9547: Jackson-databind Deserialization 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