CVE Catalog

CVE-2026-91776

HighCVSS 7.5
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.45%

36th percentile - higher than 36% of all known CVEs

Summary

Vulnerability in FasterXML jackson-databind causes unbounded memory growth when using name-based polymorphism with a fallback (defaultImpl). Each unknown type ID is stored in an unbounded map, leading to memory leak.

Risk Assessment

An attacker who can supply fresh unknown type IDs can cause continuous memory consumption growth, leading to resource exhaustion and denial of service.

Recommendation

Upgrade jackson-databind to a version with the fix that limits fallback caching and introduces bounds on entry count and type ID length.

Other vulnerabilities in FasterXML jackson-databind

See all
Original NVD description (English source)

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 data from NVD (NIST) · CISA KEV · EPSS