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-2025-52999

CVE-2025-52999: Jackson Core DOS Vulnerability

CVE-2025-52999 is a denial of service vulnerability in jackson-core caused by deeply nested JSON data that triggers StackOverflowError. This article covers the technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-52999 Overview

jackson-core, the core low-level incremental ("streaming") parser and generator abstractions used by Jackson Data Processor, is vulnerable to a Stack Overflow condition when processing deeply nested JSON input. In versions prior to 2.15.0, parsing an input file with particularly deep nesting levels could cause Jackson to throw a StackOverflowError, leading to denial of service.

Critical Impact

Applications using vulnerable versions of jackson-core or jackson-databind can be crashed by attackers submitting maliciously crafted JSON payloads with excessive nesting depth, causing service disruption.

Affected Products

  • jackson-core versions prior to 2.15.0
  • jackson-databind versions prior to 2.15.0 (uses jackson-core for JSON parsing)
  • Applications and services that parse untrusted JSON input using affected Jackson libraries

Discovery Timeline

  • 2025-06-25 - CVE-2025-52999 published to NVD
  • 2025-06-26 - Last updated in NVD database

Technical Details for CVE-2025-52999

Vulnerability Analysis

This vulnerability is classified as CWE-121 (Stack-based Buffer Overflow), manifesting as a stack exhaustion condition rather than a traditional memory corruption issue. The root problem lies in how Jackson's streaming parser handles recursive descent through nested JSON structures. When parsing deeply nested arrays or objects, the parser uses recursive function calls that consume stack space for each level of nesting.

The vulnerability is exploitable over the network without authentication or user interaction, making it accessible to remote attackers who can submit JSON payloads to vulnerable endpoints. The impact is limited to availability—there is no confidentiality or integrity breach—but the ability to crash applications can be significant for critical services.

Root Cause

The vulnerability stems from the absence of configurable depth limits in jackson-core versions prior to 2.15.0. The JSON parser recursively processes nested structures without tracking or limiting the recursion depth. When an attacker provides a JSON document with thousands of nested levels (e.g., [[[[...]]]]), the Java Virtual Machine's call stack becomes exhausted, resulting in an unrecoverable StackOverflowError.

Attack Vector

Exploitation requires an attacker to submit a maliciously crafted JSON payload to an application endpoint that uses jackson-core or jackson-databind for parsing. The attack payload consists of deeply nested JSON structures designed to exceed the JVM's stack capacity. Since many Java web applications and REST APIs use Jackson for JSON processing, the attack surface is substantial.

The attack is straightforward: an attacker identifies an endpoint that accepts JSON input, crafts a payload with excessive nesting (typically several thousand levels), and submits it. The application attempts to parse the malicious input, exhausts its stack, and crashes. No special privileges or authentication are required if the target endpoint is publicly accessible.

Detection Methods for CVE-2025-52999

Indicators of Compromise

  • Application crashes with StackOverflowError in Jackson parser stack traces
  • HTTP requests containing unusually large JSON payloads with repetitive nesting patterns
  • Error logs showing recursive parser failures in com.fasterxml.jackson.core packages
  • Sudden service unavailability following JSON parsing operations

Detection Strategies

  • Monitor application logs for StackOverflowError exceptions originating from Jackson parsing classes
  • Implement request size and payload depth validation at the API gateway or load balancer level
  • Deploy runtime application self-protection (RASP) solutions that can detect recursive exhaustion patterns
  • Use dependency scanning tools to identify jackson-core versions prior to 2.15.0 in your software inventory

Monitoring Recommendations

  • Configure alerting for unusual patterns of application restarts or out-of-memory conditions
  • Monitor HTTP request payload characteristics for anomalous nesting depth or size
  • Track Jackson-related exceptions in centralized logging systems
  • Implement health check monitoring to detect service crashes quickly

How to Mitigate CVE-2025-52999

Immediate Actions Required

  • Upgrade jackson-core and jackson-databind to version 2.15.0 or later
  • Review all applications in your environment that use Jackson libraries and prioritize patching
  • Implement input validation to reject JSON payloads with excessive nesting depth at the application or gateway level
  • If immediate patching is not possible, avoid parsing JSON input from untrusted sources

Patch Information

The fix is included in jackson-core version 2.15.0, which introduces a configurable limit for parsing depth. By default, Jackson now allows a maximum depth of 1000 levels. When this limit is exceeded, jackson-core throws a StreamConstraintsException instead of causing a stack overflow. Both jackson-core and jackson-databind benefit from this change.

For additional technical details, refer to the GitHub Pull Request for Jackson and the GitHub Security Advisory GHSA-h46c-h94j-95f3.

Workarounds

  • Avoid parsing JSON input from untrusted or unauthenticated sources until patching is complete
  • Implement pre-parsing validation at the network edge to detect and reject deeply nested JSON structures
  • Configure web application firewalls (WAF) to limit request body size and detect malicious JSON patterns
  • Consider increasing JVM stack size temporarily as a partial mitigation, though this only raises the exploitation threshold
bash
# Example: Configure JVM with increased stack size (partial mitigation only)
java -Xss2m -jar your-application.jar

# Recommended: Upgrade Jackson dependencies in Maven pom.xml
# Update to jackson-core 2.15.0 or later
# <dependency>
#   <groupId>com.fasterxml.jackson.core</groupId>
#   <artifactId>jackson-core</artifactId>
#   <version>2.15.0</version>
# </dependency>

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechJackson

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/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-121
  • Technical References
  • GitHub Pull Request for Jackson

  • GitHub Security Advisory GHSA-h46c-h94j-95f3
  • Related CVEs
  • CVE-2023-3894: Jackson-dataformats-text DOS Vulnerability

  • CVE-2025-49128: Jackson-core Information Disclosure Bug

  • CVE-2020-9548: Jackson-databind Deserialization Vulnerability

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