๐Ÿ” CVE Alert

CVE-2026-89425

HIGH 7.5

jackson-core: UTF8DataInputJsonParser._reportInvalidToken() does not honor maxErrorTokenLength, allowing unbounded StringBuilder growth

CVSS Score
7.5
EPSS Score
0.0%
EPSS Percentile
0th

UTF8DataInputJsonParser._reportInvalidToken() in FasterXML jackson-core builds the offending-token text for its error message by appending Java identifier characters to a StringBuilder in a loop that has no upper bound. Unlike the three sibling parser implementations, including UTF8StreamJsonParser, it never consults ErrorReportConfiguration.getMaxErrorTokenLength() (default 256). A malformed token supplied to a parser created through JsonFactory.createParser(DataInput) is therefore accumulated in full. No StreamReadConstraints setting mitigates this: maxDocumentLength cannot be applied to DataInput sources at all, and maxStringLength does not cover this path because the accumulation bypasses ReadConstrainedTextBuffer. The reporter measured a 20,000,109-character exception message from a 20-million-character malformed token on the DataInput path, against 367 characters for identical input on the InputStream path. Scaling the payload drives the StringBuilder, which also incurs byte-to-char expansion and internal array doubling, to many times the raw payload size and can trigger OutOfMemoryError for the whole JVM. UTF8DataInputJsonParser was introduced in 2.8.0 together with createParser(DataInput); releases before 2.8.0 do not contain the affected class.

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

Get instant alerts for fasterxml jackson-core

Be the first to know when new high vulnerabilities affecting fasterxml jackson-core 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-core
2.8.0 โ‰ค 2.18.10 2.19.0 โ‰ค 2.21.6 2.22.0 โ‰ค 2.22.2
FasterXML / jackson-core
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-core/security/advisories/GHSA-7hhh-6rmp-j9qf github.com: https://github.com/FasterXML/jackson-core/pull/1698

Credits

manqingzhou