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 joserfc to version 1.7.2 or higher.
Affected versions of this package are vulnerable to Improper Validation of Syntactic Correctness of Input due to permissive urlsafe_b64decode handling in src/joserfc/util.py. An attacker can make a signed JWT validate under an alternate textual form by appending trailing = padding to the compact token or one of its segments. This lets the same token be represented by multiple encodings, which can defeat token revocation or anti-replay checks when an application tracks JWTs or token hashes by their exact string form. Users see otherwise identical authentication tokens accepted even after the original encoding has been denied.
Notes
joserfc only treated + and / as invalid in urlsafe_b64decode; padded base64url text with = was still accepted, so the issue applied to any code path that reused that shared decoder, not just one JWT parser entrypoint.