๐Ÿ” CVE Alert

CVE-2026-91777

HIGH 7.5

jackson-databind: quadratic forward-reference completion in Collection and Map deserializers

CVSS Score
7.5
EPSS Score
0.0%
EPSS Percentile
0th

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.

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.5.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-cxp5-3px4-pw24 github.com: https://github.com/FasterXML/jackson-databind/issues/6204

Credits

Daniel Birtwhistle (dabirt)