First time JWT user here. I am planning on storing my JWT's client-side, in web storage or in a JS-readable cookie. Since both of these things can be edited by users, I was wondering if it was possible that an attacker could encode malicious code inside the JWT, and then it get executed when I run JWT.decode server-side?
Thanks for any insight into this!