CVE-2026-50193
Analyzed Analyzed - Analysis Complete

Denial-of-Service in Jackson Databind via Deeply Nested JSON

Vulnerability report for CVE-2026-50193, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-23

Last updated on: 2026-06-27

Assigner: GitHub, Inc.

Description

jackson-databind contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor. From 2.13.0 until 2.14.0, a potential Denial-of-Service exists when attacker sends deeply nested JSON if (and only if) the service reads deeply nested (1000s of levels) JSON as JsonNode (ObjectMapper.readTree()) and writes out same (or modifided) node using JsonNode.toString(). This can consume significant amount of resources with concurrent relatively small requests (1000 nested arrays is 2kB). This vulnerability is fixed in 2.14.0.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-23
Last Modified
2026-06-27
Generated
2026-07-14
AI Q&A
2026-06-24
EPSS Evaluated
2026-07-13
NVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
fasterxml jackson-databind From 2.10.0 (inc) to 2.14.0 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-400 The product does not properly control the allocation and maintenance of a limited resource.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

The vulnerability exists in jackson-databind versions from 2.13.0 until 2.14.0. It occurs when an attacker sends deeply nested JSON data (thousands of levels) that is read as a JsonNode using ObjectMapper.readTree() and then written out using JsonNode.toString(). This process can consume a significant amount of system resources even with relatively small requests, potentially leading to a Denial-of-Service (DoS) condition.

Impact Analysis

This vulnerability can impact you by causing a Denial-of-Service (DoS) condition. When an attacker sends deeply nested JSON data, the system may consume excessive resources processing these requests, which can degrade performance or make the service unavailable to legitimate users.

Mitigation Strategies

To mitigate this vulnerability, upgrade jackson-databind to version 2.14.0 or later, where the issue is fixed.

Detection Guidance

This vulnerability can be detected by testing if your system running jackson-databind versions from 2.13.0 up to but not including 2.14.0 is vulnerable to denial-of-service caused by deeply nested JSON structures.

A practical way to detect it is to send or process a JSON payload with very deep nesting (thousands of nested arrays or objects) and observe if the service experiences a StackOverflowError or significant resource consumption when parsing and serializing the JSON using ObjectMapper.readTree() and JsonNode.toString().

For example, you can create a deeply nested JSON string and use a Java test program or script to parse and serialize it with jackson-databind to see if it triggers the issue.

  • Use a Java snippet to parse deeply nested JSON with ObjectMapper.readTree() and call toString() on the resulting JsonNode.
  • Monitor your application logs or runtime for StackOverflowError or excessive CPU/memory usage during such operations.

There are no specific network commands provided in the resources, but crafting and sending deeply nested JSON payloads to the affected service endpoints that use jackson-databind can help detect the vulnerability.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-50193. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart