-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Panic when claim contains an array with null values #315
Comments
That is indeed something that golang-jwt should avoid and probably can avoid by not using reflect.TypeOf on a nil value. I will prepare a fix for that. |
Ok, after having another look I would say that you should probably report this to the golang team. I initially thought that the usage of reflect.TypeOf panics, but only the |
…rror` Previously, when parsing claim values, we used `json.UnsupportedTypeError` to denote if a claim string value is not of the correct type. However, this could lead to panics if a nil value is present and the `Error` function of the `json.UnsupportedTypeError` is called, which does not check for nil types. Instead, we just now use `ErrInvalidType` similar to the map claims. Fixes #315
Thanks for the report, indeed this (or any other code in this package) should never panic. I think returning an invalid error defined in this package should be sufficient. |
…rror` (#316) Previously, when parsing claim values, we used `json.UnsupportedTypeError` to denote if a claim string value is not of the correct type. However, this could lead to panics if a nil value is present and the `Error` function of the `json.UnsupportedTypeError` is called, which does not check for nil types. Instead, we just now use `ErrInvalidType` similar to the map claims. Fixes #315
Thanks for the quick fix, awesome :) |
Hi 👋
we encountered an issue when our app received an invalid JWT, which looked like this:
(simplified)
When this is processed by golang-jwt, e.g. with this simplified example code:
then, the program panics:
The error seems to be in
jwt/types.go
Line 124 in 5e00fbc
UnsupportedTypeError
is constructed where the referenced Type is nil. However, theUnsupportedTypeError
, in it's Error() method, adds the unsupported type from the Type field. That panics, as Type is nil.I understand, that such a token is probably invalid according to it's spec, however, I feel that the code should not panic in these cases, but return the appropriate error (which it at least tried to do :D).
I'm also unsure, if that is something to be reported to golang-jwt (which constructs the UnsupportedTypeError) or to encoding/json, which uses the Type field without checking if it is nil. If I wrongfully reported this here, please give me a hint and I go report it to encoding/json instead ❤️
The text was updated successfully, but these errors were encountered: