Resource exhaustion in Fasterxml Jackson-Databind
CVE-2026-91776
TypeDeserializerBase._findDeserializer() in FasterXML jackson-databind caches the resolved deserializer under the raw, attacker-supplied type ID. When name-based polymorphism is configured with a fallback, for example @JsonTypeInfo(use = Id.NAME, defaultImpl = ...), every distinct unrecognized type ID resolves to the same fallback deserializer but is retained as its own key in the _deserializers map. That map has no configurable bound and lives for the lifetime of the type deserializer, so an attacker who can repeatedly supply fresh unknown type IDs causes monotonic memory retention across requests. The reporter observed 10,000 retained entries from 10,000 distinct unknown IDs, against a single entry for a control that repeated one unknown ID the same number of times, isolating attacker-controlled key cardinality from request volume. Exploitation requires an application that enables name-based polymorphism with a defaultImpl or equivalent fallback, accepts attacker-influenced type IDs, and reuses a long-lived ObjectMapper across requests. The fix stops caching fallback resolutions for unrecognized IDs and bounds both the number of cached entries and the length of a cacheable type ID.
Vulnerability class: DoS (Denial of Service)
Published .
CVSS v3 metric
CVSS v3 base score 7.5 (High). Vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H.
EPSS exploit prediction
No EPSS score from FIRST.org yet. New CVEs usually get one within a few days; no score means no signal yet, not low risk. How EPSS works.
Affected products
Weakness classification (CWE)
References
- 36c7be3b-2937-45df-85ea-ca7133ea542c (vendor-advisory)
- 36c7be3b-2937-45df-85ea-ca7133ea542c (patch)
Frequently asked questions
- What is CVE-2026-91776?
- CVE-2026-91776 is a high-severity vulnerability in Fasterxml Jackson-Databind, classified under Uncontrolled Resource Consumption. CVSS score: 7.5/10. Published 2026-09-23.
- How severe is CVE-2026-91776?
- High severity. CVSS v3 base score is 7.5 out of 10.