The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade org.typelevel:jawn-parser_3 to version 1.7.0 or higher.
Affected versions of this package are vulnerable to Inefficient Algorithmic Complexity in AsyncParser in parser/shared/src/main/scala/jawn/AsyncParser.scala. An attacker can exhaust CPU by sending untrusted JSON tokens split across many tiny chunks so each absorb call rescans the same incomplete token from the start. This causes parsing of large strings, escaped strings, or numbers to take O(n^2) work, slowing or stalling applications that use AsyncParser on attacker-controlled input.
Workarounds
Parser instead of AsyncParser; this avoids the chunk-by-chunk asynchronous parse path that can be driven into repeated rescans and CPU exhaustion.absorb; this reduces the attacker’s ability to split a token across tiny inputs and trigger quadratic parsing work.