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-91777 Details

ANALYZED


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

Description

Forward-reference completion for @JsonIdentityInfo object IDs in FasterXML jackson-databind performs a linear scan of the pending-reference accumulator for every resolved ID. The affected paths are CollectionDeserializer.CollectionReferringAccumulator.resolveForwardReference() and the equivalent implementation in MapDeserializer. When a document first creates N unresolved object-ID references in an identity-enabled collection or map and then defines those same IDs in reverse order, completion performs on the order of N * (N + 1) / 2 identity comparisons, so a shallow document whose size grows linearly causes quadratic CPU work during deserialization. The reporter instrumented equals() calls on the ID class and measured exactly 2,003,000 comparisons at N = 2,000, against zero comparisons in the pending-reference lookup path for an equally sized control in which every reference was already resolved. The input requires no deep nesting and no syntactically unusual JSON. Exploitation requires an application that deserializes attacker-influenced JSON into an identity-enabled collection or map. The fix replaces the repeated linear lookup with a keyed pending-reference structure.

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.5.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-91777
NVD Published Date:
Sep 23, 2026
NVD Last Modified:
Sep 24, 2026
Source:
HeroDevs
CVE-2026-91777 Details - Not Deferred