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.apache.camel:camel-platform-http-main to version 4.22.0 or higher.
Affected versions of this package are vulnerable to Improper Authentication via the JWTAuthenticationConfigurer in components/camel-platform-http-main/src/main/java/org/apache/camel/component/platform/http/main/authentication/JWTAuthenticationConfigurer.java. An attacker can gain unauthorized access by sending any unexpired JWT signed by a key trusted by the configured keystore, even if the token was minted for a different issuer or audience. When jwtIssuer and jwtAudience were both unset, the embedded HTTP server and the management server accepted tokens after only signature and expiry checks, so the iss and aud claims were never enforced. This can let a foreign token authenticate successfully and expose protected platform HTTP endpoints and management endpoints to requests that should have been rejected.
Workarounds
camel.server.jwtIssuer and/or camel.server.jwtAudience for the embedded HTTP server so tokens are validated for the expected iss and aud claims, which prevents acceptance of foreign JWTs signed by a trusted keystore key.camel.management.jwtIssuer and/or camel.management.jwtAudience for the embedded management server so tokens are validated for the expected iss and aud claims, which prevents acceptance of foreign JWTs on management endpoints.camel.server.jwtAllowMissingIssuerAndAudience=true or camel.management.jwtAllowMissingIssuerAndAudience=true explicitly so the server starts with that reduced validation model; this avoids accidental deployment with weaker JWT checks than intended.