CVE-2026-68494

HIGHPre-NVD 8.78.7
EchelonGraph scoreMEDIUM confidence

This high-severity CVE scores 8.7 under a secondary CVSS source (NVD's own analysis pending). EPSS exploit probability: 0.4%, top 69% of all CVEs by exploit prediction. GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).

Triggered by: NVD CVSS baseline
Sources: epss, secondary
Trending — 4 sources updated this weekElevated
8.7EG
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS PROB: 0%CVSS: 8.7Exploit: Elevated riskExposed: 0

A fix is available — apply it.

The fix released in jackson-core 2.18.6 and 2.21.1 for CVE-2026-18401 (GHSA-72hv-8253-57qq, number length constraint bypass in the non-blocking parser) is incomplete. This record covers the remaining bypass.

The earlier fix wired validateIntegerLength() into a new _setIntLength() helper and invoked it wherever the integer portion of a number is decided: a terminator byte arrives, a '.' or 'e'/'E' is seen, or input ends inside a fully buffered value. It was not invoked on the attacker-relevant path where the parser runs out of input while still inside the MINOR_NUMBER_INTEGER_DIGITS minor state and returns NOT_AVAILABLE to the caller.

As a result, an attacker who streams JSON to a non-blocking parser in many small chunks, without ever sending a terminator byte, keeps the parser inside MINOR_NUMBER_INTEGER_DIGITS indefinitely. _textBuffer.expandCurrentSegment() grows the accumulator on every chunk while validateIntegerLength() is never called. The accumulator is bounded only by maxStringLength (20 MiB by default) rather than by maxNumberLength (1000 by default), an amplification of roughly 20,000x over the documented limit. Because Java char values occupy two bytes, a single connection can be driven to approximately 40 MiB of heap before the validator finally fires when the value completes.

The equivalent fraction-path code is correct: _finishFloatFraction() calls _setFractLength() before its NOT_AVAILABLE return. The missing call affects the integer-digit paths in _startPositiveNumber(), _startNegativeNumber() and _finishNumberIntegralPart() in NonBlockingUtf8JsonParserBase.

Impact: reactive frameworks such as Spring WebFlux/Reactor, Quarkus, Helidon and Vert.x feed inbound HTTP or gRPC bytes to the async parser as they arrive, which is precisely the chunked-feed shape required. Operators who set StreamReadConstraints.maxNumberLength expecting it to cap memory per number value do not get that guarantee; memory accumulates per concurrent connection and attacker-controlled concurrency can exhaust the JVM heap. The synchronous parsers (UTF8StreamJsonParser, ReaderBasedJsonParser) and the async parser operating on complete input are not affected.

Exploitation requires only the ability to stream data to a parsing endpoint; no privileges or user interaction are needed.

This issue affects com.fasterxml.jackson.core:jackson-core from version 2.15.0 through 2.18.7, and from 2.19.0 through 2.21.3, and tools.jackson.core:jackson-core from 3.0.0 through 3.1.3. Versions prior to 2.15.0 are not affected, because StreamReadConstraints -- which defines the maxNumberLength setting -- was first introduced in jackson-core 2.15.0, so no such constraint exists to be bypassed in earlier releases. Note that GHSA-r7wm-3cxj-wff9 states the affected 2.x range without a lower bound. The 2.22.x and 3.2.x release lines are not affected: those branches were created after the fix commit landed on 2026-05-21 and therefore contain it from their initial releases (2.22.0, tagged 2026-06-03, and 3.2.0, tagged 2026-06-08).

CVSS v3
8.7
EG Score
8.7(medium)
EG Risk
70(Attend)
EG Risk 70/100SSVC: Attend

EG Risk is EchelonGraph's 0–100 priority score: it fuses intrinsic severity with real-world exploitation and automatability so you can rank equal-severity CVEs and fix the most dangerous first. Higher = act sooner. Distinct from the 0–10 EG Score (severity).

How it’s computed
Severity87% × 45%
Exploitation40% × 40%
Automatability100% × 15%
Action: Remediate soon — notable exploitation risk.
EPSS PROB
0%
EPSS %ILE
31%
KEV
Not listed

Published

August 4, 2026

Last Modified

August 5, 2026

Advisory Details (7)

Auto-updated Aug 4, 2026
🔬 Proof of concept available. Patch available. Sources: github, github_pr, github_commit.
github Patch Available🟡 PoC Available

jackson-core: Number Length Constraint Bypass in Async Parser Leads to Potential DoS Condition · GHSA-72hv-8253-57qq · GitHub Advisory Database · GitHub

https://github.com/advisories/GHSA-72hv-8253-57qq
github_commit

commit c5941e5aae7f (FasterXML/jackson-core)

Fix landed in FasterXML/jackson-core commit c5941e5aae7f — awaiting tagged release

https://github.com/FasterXML/jackson-core/commit/c5941e5aae7fd5aeac55d66933cfb82b9aabeef8
github_commit

commit 4cdd529749da (FasterXML/jackson-core)

Fix landed in FasterXML/jackson-core commit 4cdd529749da — awaiting tagged release

https://github.com/FasterXML/jackson-core/commit/4cdd529749da396cc7edf6d4a2aad41d47902641
github_commit

commit 050b429804dc (FasterXML/jackson-core)

Fix landed in FasterXML/jackson-core commit 050b429804dc — awaiting tagged release

https://github.com/FasterXML/jackson-core/commit/050b429804dce2a7e08f0be1b0b4c3d040fdb9cd
github_pr

Apply number-length validator on streaming integer path of async parser [GHSA-r7wm-3cxj-wff9]

Fix merged in FasterXML/jackson-core PR #1611 on 2026-05-20 — awaiting tagged release

https://github.com/FasterXML/jackson-core/pull/1611
github Patch Available🟡 PoC Available

Async parser maxNumberLength bypass via chunked digit accumulation (incomplete fix for GHSA-72hv-8253-57qq) · Advisory · FasterXML/jackson-core · GitHub

https://github.com/FasterXML/jackson-core/security/advisories/GHSA-r7wm-3cxj-wff9

Patch Availability(4)

Vendor / EcosystemFixed in / PatchReleasedSource
redhatjackson-core2026-08-13redhat
redhatrh-lightspeed-runtimes/runtimes-agent-init-rhel9:17863787222026-08-12redhat
redhatjboss-eap-runtime-maven-repository.zip2026-08-11redhat
redhateap7-wildfly-0:7.4.25-2.GA_redhat_00001.1.el7eap2026-08-11redhat

Patches are aggregated from vendor advisories (Red Hat, Microsoft, Cisco, GitHub) and package ecosystems (OSV, GHSA). Multiple rows for the same upstream release have been deduplicated.

Weakness Classification(1)

MITRE Common Weakness Enumeration — the root-cause categories this CVE belongs to.

Additional Vendor Advisories

(2)

Vendors that published advisories for this CVE beyond the curated set above. Broader coverage but minimal per-row detail — click through for the original advisory.

Data Freshness Timeline

(refreshed 44× in last 7d / 92× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

  1. 2026-08-21 06:03 UTCEG score recompute
  2. 2026-08-21 06:03 UTCVendor advisory
  3. 2026-08-21 06:03 UTCGHSA enrichment
  4. 2026-08-20 22:56 UTCEPSS rescore
  5. 2026-08-20 17:36 UTCVendor advisory
  6. 2026-08-20 17:36 UTCGHSA enrichment
  7. 2026-08-20 05:09 UTCEG score recompute
  8. 2026-08-20 05:09 UTCVendor advisory
  9. 2026-08-20 05:09 UTCGHSA enrichment
  10. 2026-08-19 17:04 UTCEPSS rescore
  11. 2026-08-19 16:42 UTCVendor advisory
  12. 2026-08-19 16:42 UTCGHSA enrichment
  13. 2026-08-19 04:14 UTCVendor advisory
  14. 2026-08-19 04:14 UTCGHSA enrichment
  15. 2026-08-18 15:48 UTCEG score recompute
  16. 2026-08-18 15:48 UTCVendor advisory
  17. 2026-08-18 15:48 UTCGHSA enrichment
  18. 2026-08-18 13:49 UTCEPSS rescore
  19. 2026-08-18 13:49 UTCEPSS rescore
  20. 2026-08-18 01:22 UTCEG score recompute
  21. 2026-08-18 01:22 UTCVendor advisory
  22. 2026-08-18 01:22 UTCGHSA enrichment
  23. 2026-08-17 13:47 UTCEPSS rescore
  24. 2026-08-17 12:49 UTCVendor advisory
  25. 2026-08-17 12:49 UTCGHSA enrichment
Show 67 more
  1. 2026-08-17 00:23 UTCEG score recompute
  2. 2026-08-17 00:23 UTCVendor advisory
  3. 2026-08-17 00:23 UTCGHSA enrichment
  4. 2026-08-16 14:56 UTCEPSS rescore
  5. 2026-08-16 14:56 UTCEPSS rescore
  6. 2026-08-16 11:57 UTCEG score recompute
  7. 2026-08-16 11:57 UTCVendor advisory
  8. 2026-08-16 11:57 UTCGHSA enrichment
  9. 2026-08-15 23:31 UTCVendor advisory
  10. 2026-08-15 23:31 UTCGHSA enrichment
  11. 2026-08-15 11:05 UTCEG score recompute
  12. 2026-08-15 11:05 UTCVendor advisory
  13. 2026-08-15 11:05 UTCGHSA enrichment
  14. 2026-08-15 01:30 UTCEPSS rescore
  15. 2026-08-14 22:38 UTCVendor advisory
  16. 2026-08-14 22:38 UTCGHSA enrichment
  17. 2026-08-14 10:12 UTCEG score recompute
  18. 2026-08-14 10:12 UTCVendor advisory
  19. 2026-08-14 10:12 UTCGHSA enrichment
  20. 2026-08-13 22:00 UTCEPSS rescore
  21. 2026-08-13 21:46 UTCVendor advisory
  22. 2026-08-13 21:46 UTCGHSA enrichment
  23. 2026-08-13 09:19 UTCVendor advisory
  24. 2026-08-13 09:19 UTCGHSA enrichment
  25. 2026-08-12 20:53 UTCEG score recompute
  26. 2026-08-12 20:53 UTCVendor advisory
  27. 2026-08-12 20:53 UTCGHSA enrichment
  28. 2026-08-12 13:51 UTCEPSS rescore
  29. 2026-08-12 08:27 UTCVendor advisory
  30. 2026-08-12 08:27 UTCGHSA enrichment
  31. 2026-08-11 20:01 UTCEG score recompute
  32. 2026-08-11 20:01 UTCGHSA enrichment
  33. 2026-08-11 07:35 UTCEG score recompute
  34. 2026-08-11 07:35 UTCGHSA enrichment
  35. 2026-08-11 00:00 UTCEPSS rescore
  36. 2026-08-10 19:09 UTCGHSA enrichment
  37. 2026-08-10 06:42 UTCGHSA enrichment
  38. 2026-08-09 18:16 UTCEG score recompute
  39. 2026-08-09 18:16 UTCGHSA enrichment
  40. 2026-08-09 13:47 UTCEPSS rescore
  41. 2026-08-09 05:50 UTCGHSA enrichment
  42. 2026-08-08 17:24 UTCEG score recompute
  43. 2026-08-08 17:24 UTCGHSA enrichment
  44. 2026-08-08 16:37 UTCEPSS rescore
  45. 2026-08-08 04:57 UTCGHSA enrichment
  46. 2026-08-07 16:31 UTCEG score recompute
  47. 2026-08-07 16:31 UTCGHSA enrichment
  48. 2026-08-07 04:05 UTCGHSA enrichment
  49. 2026-08-06 15:39 UTCEG score recompute
  50. 2026-08-06 15:39 UTCGHSA enrichment
  51. 2026-08-06 13:47 UTCEPSS rescore
  52. 2026-08-06 03:12 UTCEG score recompute
  53. 2026-08-06 03:12 UTCGHSA enrichment
  54. 2026-08-05 19:17 UTCEPSS rescore
  55. 2026-08-05 19:17 UTCEPSS rescore
  56. 2026-08-05 14:46 UTCGHSA enrichment
  57. 2026-08-05 02:20 UTCEG score recompute
  58. 2026-08-05 02:20 UTCGHSA enrichment
  59. 2026-08-05 02:15 UTCEG score recompute
  60. 2026-08-05 02:15 UTCGHSA enrichment
  61. 2026-08-04 19:26 UTCEG score recompute
  62. 2026-08-04 19:26 UTCGHSA enrichment
  63. 2026-08-04 18:21 UTCEG score recompute
  64. 2026-08-04 18:21 UTCGHSA enrichment
  65. 2026-08-04 15:19 UTCEG score recompute
  66. 2026-08-04 14:48 UTCEG score recompute
  67. 2026-08-04 14:47 UTCMITRE cvelistV5first tracked

Frequently asked(5)

What is CVE-2026-68494?
CVE-2026-68494 is a high vulnerability published on August 4, 2026. The fix released in jackson-core 2.18.6 and 2.21.1 for CVE-2026-18401 (GHSA-72hv-8253-57qq, number length constraint bypass in the non-blocking parser) is incomplete. This record covers the remaining bypass. The earlier fix wired validateIntegerLength() into a new setIntLength() helper and invoked…
When was CVE-2026-68494 disclosed?
CVE-2026-68494 was first published in the National Vulnerability Database on August 4, 2026, with the most recent update on August 5, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-68494 actively exploited?
CVE-2026-68494 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 0% probability of exploitation in the next 30 days, which ranks it in the top 69.4% of all scored CVEs.
What is the CVSS score of CVE-2026-68494?
CVE-2026-68494 has a CVSS v3 base score of 8.7 (NVD).
How do I remediate CVE-2026-68494?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-68494, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

Explore the affected products and dependency analysis for CVE-2026-68494

Explore →

Is Your Infrastructure Affected by CVE-2026-68494?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.