CVE Catalog

CVE-2026-91777

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 quadratic complexity during deserialization of documents with object identities (JsonIdentityInfo). When IDs are defined in reverse order, the number of comparisons grows quadratically, potentially leading to CPU exhaustion.

Risk Assessment

An attacker can send a specially crafted JSON document causing excessive CPU usage, leading to denial of service (DoS) in applications that deserialize data.

Recommendation

Upgrade jackson-databind to a version containing the fix that replaces linear lookup with a keyed structure.

Other vulnerabilities in FasterXML jackson-databind

See all
Original NVD description (English source)

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.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS