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 applicationsLearn about Improper Access Control vulnerabilities in an interactive lesson.
Start learningUpgrade io.micronaut.security:micronaut-security-oauth2
to version 3.1, 3.1.2, 3.2.4, 3.3.2, 3.4.3, 3.5.3, 3.6.6, 3.7.4, 3.8.4, 3.9.6, 3.10.2, 3.11.1 or higher.
Affected versions of this package are vulnerable to Improper Access Control due to the IdTokenClaimsValidator
logic on aud
. An attacker can bypass aud
claim validation if the token is issued by the same identity issuer/provider, leading to potential unauthorized access by exploiting the logic flaw.
This vulnerability can be mitigated by setting micronaut.security.token.jwt.claims-validators.audience
with valid values. micronaut.security.token.jwt.claims-validators.openid-idtoken
can be kept as default on.
return issuer.equalsIgnoreCase(iss) &&
audiences.contains(clientId) &&
validateAzp(claims, clientId, audiences);