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.http4k:http4k-core to version 6.49.0.0 or higher.
Affected versions of this package are vulnerable to Insufficient Verification of Data Authenticity through the misleadingly named HmacSha256.hash function. An attacker can bypass message authentication by exploiting the use of an unkeyed digest where a keyed HMAC was expected. This is only exploitable if downstream callers incorrectly assume HmacSha256.hash provides keyed authentication and use it for message authentication purposes.
This vulnerability can be mitigated by using javax.crypto.Mac.getInstance("HmacSHA256") with a SecretKeySpec for HMAC-SHA256, or java.security.MessageDigest.getInstance("SHA-256") for an unkeyed SHA-256 digest.