Search Results

4
votes

How do I prevent replay attacks?

If you really don't want to store any state, I think the best you can do is limit replay attacks by using timestamps and a short expiration time. For example, server sends: {Ts, U, HMAC({Ts …
0
votes

Can a unathorized user capture a ssl packet, resend it and login?

No. Because the attacker in this scenario will still need to negotiate his own SSL handshake with the server, he will be unable to replay the victim's packet verbatim. …