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
{{ message }}
This repository was archived by the owner on May 31, 2022. It is now read-only.
When decoding the JWT header, the input is converted Map<String, String> using string operations. This simple parser fails with an ArrayIndexOutOfBoundsException if the header value contains a comma.
The JWT header parser should be able to handle any JSON object, even if most of the fields are ignored for verification.
When decoding the JWT header, the input is converted
Map<String, String>using string operations. This simple parser fails with anArrayIndexOutOfBoundsExceptionif the header value contains a comma.The JWT header parser should be able to handle any JSON object, even if most of the fields are ignored for verification.