Can I prevent a replay attack of my signed JWTs?
I have implemented a stateless auth over HTTP in Laravel, using JWTs.
I send my username/password from the frontend.
Server authenticates user, sends back a signed JWT with an expiry time.
I’m using the HS512 algorithm to sign with a pr… Continue reading Can I prevent a replay attack of my signed JWTs?