Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
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 applicationsThere is no fixed version for io.github.lognet:grpc-spring-boot-starter.
Affected versions of this package are vulnerable to Incorrect Authorization in the processSecuredAnnotation() method of GrpcServiceAuthorizationConfigurer, which uses MultiValueMap.addAll() to combine class-level and method-level @Secured rules and evaluates the merged set with AffirmativeBased, so the rules are OR-merged instead of letting the stricter method-level rule override. A user holding only the broad class-level role can invoke a method restricted to a stricter role, for example reaching a method marked @Secured("ROLE_ADMIN") under a class marked @Secured("ROLE_USER") with only ROLE_USER, because either rule granting access is sufficient. This requires a service that stacks a broader class-level @Secured annotation with a stricter method-level one, and the caller must already hold the broader role.