Ram

Results 1 issues of Ram

In payloads.go, when you encode the JWT after tampering with it, you encode with `b64.StdEncoding.EncodeToString()`. However, you should use `base64.RawURLEncoding.EncodeToString()`. The second method strips the padding from the base64 (i.e....