You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With a jku header present (JSON Web Key Set URL), a backend can always fetch the latest public keys for a kid for signature verification for the OpenID server. Otherwise, the public keys (which may rotate), need to be configured/hard coded into the backend and rotated appropriately.
A present jku header allows for manipulating and fake signing a JWT. It therefore must be used with caution in the backend and always be checked against a set of allowed URLs.
With a
jku
header present (JSON Web Key Set URL), a backend can always fetch the latest public keys for akid
for signature verification for the OpenID server. Otherwise, the public keys (which may rotate), need to be configured/hard coded into the backend and rotated appropriately.A present
jku
header allows for manipulating and fake signing a JWT. It therefore must be used with caution in the backend and always be checked against a set of allowed URLs.The Jose lib allows to includes this header via
There is no possibility though to configure this for
which is hardcoded like this and only includes the
kid
,typ
andalg
headers:The text was updated successfully, but these errors were encountered: