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
Cannot correctly process URL Safe Base64 encoded user info (aka method:password) fields if the length of encoded field is not a multiple of 4.
The decodeBase64URLSafe function in the current code does not use = to fill the string length to a multiple of 4 and then hands the string to the base64 library for parsing:
Commit d2f1118
Cannot correctly process URL Safe Base64 encoded user info (aka method:password) fields if the length of encoded field is not a multiple of 4.
The
decodeBase64URLSafe
function in the current code does not use=
to fill the string length to a multiple of 4 and then hands the string to thebase64
library for parsing:https://github.com/ricky9w/serenity/blob/474ab7e4299d1395cf790036a07ecee23612599c/subscription/parser/raw.go#L37C1-L44C2
The text was updated successfully, but these errors were encountered: