CVE-2026-89407: jackson-core: quadratic backtracking in NumberInput.PATTERN_FLOAT via looksLikeValidNumber() enables ReDoS

Published Sep 22, 2026
·
Updated

NumberInput.looksLikeValidNumber() in FasterXML jackson-core pre-validates "stringified numbers" with two regular expressions: PATTERNFLOAT ([+-]?[0-9][\.]?[0-9]+([eE][+-]?[0-9]+)?), present since 2.17.0, and PATTERNFLOATTRAILINGDOT, added in 2.17.2. PATTERNFLOAT places adjacent quantifiers over the same character class -- an optional [0-9] run, an optional dot, then a required [0-9]+ run -- so input that ultimately fails to match forces Java's backtracking engine to retry every possible split point of the digit run.

Matching cost therefore grows with the square of the input length.

An attacker who can supply JSON that an application deserializes into a numeric target type reaches this method through jackson-databind's default String-to-number coercion (StdDeserializer and NumberDeserializers for BigDecimal, BigInteger, Double and Float).

Because StreamReadConstraints.maxStringLength defaults to 20,000,000 characters, no constraint bounds the input before it reaches the regex.

Testing by the reporter confirmed O(n^2) growth across five consecutive input-size doublings, with a single 160,000-character string consuming roughly 74 seconds in one call; a small number of concurrent requests of ordinary body size can therefore exhaust a server's request-handling thread pool.

The affected method does not exist before 2.17.0, so 2.16.x and earlier releases are not affected.

The fix replaces both regular expressions with a hand-rolled single-pass scan.

Affected Software

1 affected component
fasterxml jackson-core>=2.17.0

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade com.fasterxml.jackson.core:jackson-core to a version that resolves this vulnerability.

    Fixed in 2.18.11
  2. Upgrade

    Upgrade com.fasterxml.jackson.core:jackson-core to a version that resolves this vulnerability.

    Fixed in 2.21.7
  3. Upgrade

    Upgrade com.fasterxml.jackson.core:jackson-core to a version that resolves this vulnerability.

    Fixed in 2.22.3
  4. Upgrade

    Upgrade tools.jackson.core:jackson-core to a version that resolves this vulnerability.

    Fixed in 3.1.7
  5. Upgrade

    Upgrade tools.jackson.core:jackson-core to a version that resolves this vulnerability.

    Fixed in 3.2.2

Event History

Sep 22, 2026
CVE Published
via MITRE·02:53 PM
Data Sourced
via MITRE·02:53 PM
RemedyDescriptionSeverityWeakness
Data Sourced
via NVD·03:17 PM
DescriptionSeverityWeakness

Frequently Asked Questions

1

Which application paths are exposed to this issue?

Applications are exposed when they deserialize attacker-controlled JSON into BigDecimal, BigInteger, Double, or Float target types. jackson-databind's default String-to-number coercion reaches the affected jackson-core validation method on those paths.

2

What does an attacker need to trigger the denial of service?

An attacker needs to be able to supply JSON that the application deserializes into a numeric target type. A long digit-heavy string that ultimately fails the floating-number pattern can force quadratic regex backtracking; no privileges or user interaction are required according to the supplied vector.

3

Does the default string-length constraint prevent exploitation?

No. StreamReadConstraints.maxStringLength defaults to 20,000,000 characters, and the affected regex is reached before that default limit provides a useful bound on the backtracking work. The reported testing found that one 160,000-character string consumed roughly 74 seconds in a single call.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203