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
Is your feature request related to a problem? Please describe.
I would like to challenge the behavior described here: https://github.com/jwtk/jjwt#adding-invalid-characters
The base64 decoder implementation does not follow best practice, because it ignores non-alphabet characters at the start and end of the string.
It is best practice to reject strings with illegal base64 characters, both according to rfc4648, and it is the most common expectation, since the standard java.util.Base64 decoders do so.
In our project, we need to parse JWT access tokens in the server code, but we also need to pass the raw JWT to another component, which is not written in Java, so it uses a different parser. That parser will fail on illegal base64 characters, but we would like to fail as soon as possible.
Why would you need to be lenient regarding non-base64-characters? If an authorization server issues JWTs with illegal base64 characters, would it not be fair to reject them and instead notify them to fix their code!?
Describe the solution you'd like
The base64 decoder implementation to throw an exception when encountering a non-alphabet character. Such as the standard java.util.Base64 decoders do - they throw IllegalArgumentException with a message like "Illegal base64 character".
Implementations MUST reject the encoded data if it contains characters outside the base alphabet when interpreting base-encoded data, unless the specification referring to this document explicitly states otherwise.
If non-alphabet characters are ignored, instead of causing rejection of the entire encoding (as recommended), a covert channel that can be used to "leak" information is made possible. The ignored characters could also be used for other nefarious purposes, such as to avoid a string equality comparison or to trigger implementation bugs. The implications of ignoring non-alphabet characters should be understood in applications that do not follow the recommended practice.
The text was updated successfully, but these errors were encountered:
Hi @laurids! This was a design decision in the early days of JJWT in the spirit of the "robustness principle". The main reason being that illegal Base64 characters in the beginning or the end from people trying to 'trick' signature comparisons doesn't actually change the underlying signature, so there is no reason to fail: if the signature is confirmed successfully (from a cryptographic perspective), people trying to 'play games' doesn't impact the security properties of the underlying signature/mac algorithm (which would otherwise be 'security by obscurity' and therefore useless).
We can keep this issue open to track changing the behavior, but this implementation has been around for 8-9 years now; odds are high that existing usages depend on this behavior, so we'd probably only be able to change this on a major release or next significant point release.
Is your feature request related to a problem? Please describe.
I would like to challenge the behavior described here: https://github.com/jwtk/jjwt#adding-invalid-characters
The base64 decoder implementation does not follow best practice, because it ignores non-alphabet characters at the start and end of the string.
It is best practice to reject strings with illegal base64 characters, both according to rfc4648, and it is the most common expectation, since the standard
java.util.Base64
decoders do so.In our project, we need to parse JWT access tokens in the server code, but we also need to pass the raw JWT to another component, which is not written in Java, so it uses a different parser. That parser will fail on illegal base64 characters, but we would like to fail as soon as possible.
Why would you need to be lenient regarding non-base64-characters? If an authorization server issues JWTs with illegal base64 characters, would it not be fair to reject them and instead notify them to fix their code!?
Describe the solution you'd like
The base64 decoder implementation to throw an exception when encountering a non-alphabet character. Such as the standard
java.util.Base64
decoders do - they throwIllegalArgumentException
with a message like "Illegal base64 character".Describe alternatives you've considered
Edit: We could use the standard
java.util.Base64
URL safe decoder by setting it as described in https://github.com/jwtk/jjwt#custom-base64Additional context
According to rfc4648#section-3.3
According to rfc4648#section-12
The text was updated successfully, but these errors were encountered: