Not a U.S. government website. NDD is an independent vulnerability database by Volerion and is not affiliated with or endorsed by NIST or NVD.
VOLERION
Volerion Security Research

NOT DEFERRED DATABASE

VULNERABILITIES

CVE-2026-91776 Details

ANALYZED


This CVE record has been analyzed and enriched by NVDAPI.com as an independent party.

Description

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.

Metrics

CVSS 3.x Severity and Vector Strings:

References to Advisories, Solutions, and Tools

By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.

Weakness Enumeration

CWE-IDCWE NameSource
CWE-400Uncontrolled Resource ConsumptionHeroDevs

Affected Products

ProductVersions
FasterXML jackson-databind
>= 2.0.0, <= 2.18.10 (semver)
>= 2.19.0, <= 2.21.6 (semver)
>= 2.22.0, <= 2.22.2 (semver)

CPE

  • cpe:2.3:a:fasterxml:jackson-databind:*:*:*:*:*:*:*:*

Remediation

  • Upgrade: 2.18.11moderate effort
  • Upgrade: 2.21.7moderate effort
  • Upgrade: 2.22.3moderate effort
  • Upgrade: 3.1.7moderate effort
  • Upgrade: 3.2.3moderate effort

Change History

2 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-91776
NVD Published Date:
Sep 23, 2026
NVD Last Modified:
Sep 24, 2026
Source:
HeroDevs
CVE-2026-91776 Details - Not Deferred