๐Ÿ” CVE Alert

CVE-2026-91776

HIGH 7.5

jackson-databind: unbounded growth of the type id cache in TypeDeserializerBase retains every unknown raw type ID

CVSS Score
7.5
EPSS Score
0.0%
EPSS Percentile
0th

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.

CWE CWE-400
Vendor fasterxml
Product jackson-databind
Published Sep 23, 2026
Stay Ahead of the Next One

Get instant alerts for fasterxml jackson-databind

Be the first to know when new high vulnerabilities affecting fasterxml jackson-databind are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Affected Versions

FasterXML / jackson-databind
2.0.0 โ‰ค 2.18.10 2.19.0 โ‰ค 2.21.6 2.22.0 โ‰ค 2.22.2
FasterXML / jackson-databind
3.0.0 โ‰ค 3.1.6 3.2.0 โ‰ค 3.2.2

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/FasterXML/jackson-databind/security/advisories/GHSA-wv8q-qhhj-9h54 github.com: https://github.com/FasterXML/jackson-databind/issues/6203

Credits

Daniel Birtwhistle (dabirt)