How do I prevent replay attacks? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T12:10:01Zhttp://stackoverflow.com/feeds/question/44391http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks3How do I prevent replay attacks?Josh Hinman2008-09-04T18:23:22Z2009-03-16T23:23:41Z
<p>This is related to <a href="http://beta.stackoverflow.com/questions/43324/can-i-put-an-aspnet-session-id-in-a-hidden-form-field" rel="nofollow">another question I asked</a>. In summary, I have a special case of a URL where, when a form is POSTed to it, I can't rely on cookies for authentication or to maintain the user's session, but I somehow need to know who they are, and I need to know they're logged in!</p>
<p>I think I came up with a solution to my problem, but it needs fleshing out. Here's what I'm thinking. I create a hidden form field called "username", and place within it the user's username, encrypted. Then, when the form POSTs, even though I don't receive any cookies from the browser, I know they're logged in because I can decrypt the hidden form field and get the username.</p>
<p>The major security flaw I can see is replay attacks. How do I prevent someone from getting ahold of that encrypted string, and POSTing as that user? I know I can use SSL to make it harder to steal that string, and maybe I can rotate the encryption key on a regular basis to limit the amount of time that the string is good for, but I'd really like to find a bulletproof solution. Anybody have any ideas? Does the ASP.Net ViewState prevent replay? If so, how do they do it?</p>
<p><strong>Edit</strong>: I'm hoping for a solution that doesn't require anything stored in a database. Application state would be okay, except that it won't survive an IIS restart or work at all in a web farm or garden scenario. I'm accepting Chris's answer, for now, because I'm not convinced it's even possible to secure this without a database. But if someone comes up with an answer that does not involve the database, I'll accept it!</p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/44400#444004Answer by Chris AtLee for How do I prevent replay attacks?Chris AtLee2008-09-04T18:27:22Z2008-09-04T18:27:22Z<p>You could use some kind of random challenge string that's used along with the username to create the hash. If you store the challenge string on the server in a database you can then ensure that it's only used once, and only for one particular user.</p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/44410#444100Answer by Matt Bishop for How do I prevent replay attacks?Matt Bishop2008-09-04T18:31:10Z2008-09-04T18:31:10Z<p>If you only accept each key once (say, make the key a GUID, and then check when it comes back), that would prevent replays. Of course, if the attacker responds <em>first</em>, then you have a new problem...</p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/44416#444160Answer by Ryan Lanciaux for How do I prevent replay attacks?Ryan Lanciaux2008-09-04T18:33:20Z2008-09-04T18:33:20Z<p>Josh,</p>
<p>Is this WebForms or MVC? If it's MVC you could utilize the AntiForgery token. This seems like it's similar to the approach you mention except it uses basically a GUID and sets a cookie with the guid value for that post. For more on that see Steve Sanderson's blog: <a href="http://blog.codeville.net/2008/09/01/prevent-cross-site-request-forgery-csrf-using-aspnet-mvcs-antiforgerytoken-helper/" rel="nofollow">http://blog.codeville.net/2008/09/01/prevent-cross-site-request-forgery-csrf-using-aspnet-mvcs-antiforgerytoken-helper/</a></p>
<p>Another thing, have you considered checking the referrer on the postback? This is not bulletproof but it may help.</p>
<p>Regards!</p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/44422#444221Answer by matt b for How do I prevent replay attacks?matt b2008-09-04T18:34:32Z2008-09-04T18:34:32Z<p>Can you use memory or a database to maintain <em>any</em> information about the user or request at all?</p>
<p>If so, then on request for the form, I would include a hidden form field whose contents are a randomly generated number. Save this token to in application context or some sort of store (a database, flat file, etc.) when the request is rendered. When the form is submitted, check the application context or database to see if that randomly generated number is still valid (however you define valid - maybe it can expire after X minutes). If so, remove this token from the list of "allowed tokens". </p>
<p>Thus any replayed requests would include this same token which is no longer considered valid on the server.</p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/44565#445651Answer by Ethan Post for How do I prevent replay attacks?Ethan Post2008-09-04T19:28:39Z2008-09-04T19:28:39Z<p>I am new to some aspects of web programming but I was reading up on this the other day. I believe you need to use a <a href="http://www.intertwingly.net/blog/1585.html" rel="nofollow">Nonce</a>.</p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/65931#659314Answer by Chris Kite for How do I prevent replay attacks?Chris Kite2008-09-15T19:24:15Z2008-09-15T19:24:15Z<p>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:</p>
<p>{Ts, U, HMAC({Ts, U}, Ks)}</p>
<p>Where Ts is the timestamp, U is the username, and Ks is the server's secret key. The user sends this back to the server, and the server validates it by recomputing the HMAC on the supplied values. If it's valid, you know when it was issued, and can choose to ignore it if it's older than, say, 5 minutes.</p>
<p>A good resource for this type of development is <a href="http://pdos.csail.mit.edu/papers/webauth:sec10.pdf" rel="nofollow">The Do's and Don'ts of Client Authentication on the Web</a></p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/65953#659532Answer by Jekke for How do I prevent replay attacks?Jekke2008-09-15T19:27:12Z2008-09-15T19:27:12Z<p>If you hash in a time-stamp along with the user name and password, you can close the window for replay attacks to within a couple of seconds. I don't know if this meets your needs, but it is at least a partial solution.</p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/652472#6524720Answer by Kelsey for How do I prevent replay attacks?Kelsey2009-03-16T23:05:03Z2009-03-16T23:05:03Z<p>In one of my apps to stop 'replay' attacks I have inserted IP information into my session object. Everytime I access the session object in code I make sure to pass the Request.UserHostAddress with it and then I compare to make sure the IPs match up. If they don't, then obviously someone other than the person made this request, so I return null. It's not the best solution but it is at least one more barrier to stop replay attacks.</p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/652516#6525160Answer by MajkaRa Tito for How do I prevent replay attacks?MajkaRa Tito2009-03-16T23:23:41Z2009-03-16T23:23:41Z<p>(Replay attacks can easily be all about an IP/MAC spoofing, plus you're challenged on dynamic IPs )</p>
<p>It is not just replay you are after here, in isolation it is meaningless. Just use SSL and avoid handcrafting anything..</p>
<p>ASP.Net ViewState is a mess, avoid it. While PKI is heavyweight and bloated, at least it works without inventing your own security 'schemes'. So if I could, I'd use it and always go for mutual authent. Server-only authentification is quite useless.</p>