How to resist MITM and replay attacks when sending encrypted data? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T03:01:28Zhttp://stackoverflow.com/feeds/question/817905http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/817905/how-to-resist-mitm-and-replay-attacks-when-sending-encrypted-data1How to resist MITM and replay attacks when sending encrypted data?oskar2009-05-03T20:18:08Z2009-05-11T02:42:56Z
<p>Assuming I've securely exchanged keys with another computer (using Diffie-Hellman perhaps), here's my tentative solution:</p>
<p>packet number + encrypted data + message authentication code (MAC)</p>
<p>The packet number is an incrementally-increased number starting at 0. After that is the encrypted data itself, followed by a MAC of them both. If someone attempts a MITM attack, the MAC should fail to compute. If they attempt a replay attack, the recipient will notice it has already received that packet number.</p>
<p>Is there any flaw in my reasoning here?</p>
http://stackoverflow.com/questions/817905/how-to-resist-mitm-and-replay-attacks-when-sending-encrypted-data/817928#8179280Answer by blowdart for How to resist MITM and replay attacks when sending encrypted data?blowdart2009-05-03T20:28:29Z2009-05-03T20:28:29Z<p>You're not describing a man in the middle attack, but a replay attack. </p>
<p>With a MITM attack the key exchange is intercepted and you say that you already have exchanged keys securely - so it is not the problem.</p>
<p>Replay attacks are easy enough to mitigate against, you include a unique message ID and then check it for uniqueness on the receiving side. Generally each message has an expiry date and time so you don't need to keep an ever growing list of message IDs to validate.</p>
http://stackoverflow.com/questions/817905/how-to-resist-mitm-and-replay-attacks-when-sending-encrypted-data/817955#8179550Answer by Ayman Hourieh for How to resist MITM and replay attacks when sending encrypted data?Ayman Hourieh2009-05-03T20:43:20Z2009-05-03T23:38:04Z<p>Your approach for protecting against replay attacks seems reasonable to me. You are essentially describing a method called <a href="http://en.wikipedia.org/wiki/Replay%5Fattack#Countermeasures" rel="nofollow">timestamping</a>. Your packet number is a "virtual time" that is used by the recipient to verify that the message was not sent before.</p>
http://stackoverflow.com/questions/817905/how-to-resist-mitm-and-replay-attacks-when-sending-encrypted-data/818152#8181521Answer by Jonathan Leffler for How to resist MITM and replay attacks when sending encrypted data?Jonathan Leffler2009-05-03T22:16:43Z2009-05-03T22:16:43Z<blockquote>
<p>Assuming I've securely exchanged keys with another computer (using Diffie-Hellman perhaps)</p>
</blockquote>
<p>This is where you face the biggest danger - if the man-in-the-middle manages to control the key exchange (for example, by establishing one key with the client and itself, and establishing another key with server and itself), then the MITM can decrypt (and re-encrypt) everything. Once you've established the secure key exchange, you should be invulnerable to the MITM attack. But the hard part is ensuring that the key exchange is truly secure.</p>
<p>Consult <a href="http://www.schneier.com/book-practical.html" rel="nofollow">Practical Cryptography</a> (or at <a href="http://rads.stackoverflow.com/amzn/click/0471223573" rel="nofollow">Amazon</a>) by Ferguson and Schneier for information about this.</p>
http://stackoverflow.com/questions/817905/how-to-resist-mitm-and-replay-attacks-when-sending-encrypted-data/846560#8465600Answer by ParoXoN for How to resist MITM and replay attacks when sending encrypted data?ParoXoN2009-05-11T02:42:56Z2009-05-11T02:42:56Z<p>Once the keys have been exchanged then the data cannot be intercepted or spoofed by a third party. (Except when your packet # counter loops. Hypothetically packets from the old window could be replayed as being from the new window.) The solution to this problem is timestamping (as others have mentioned.) Again, though, this can be sabotaged if the attacker is able to compromise in some way the system time. (If they are a man in the middle, they could hypothetically imitate an NTP server and in that way modify a client's system time.)</p>
<p>What an eavesdropper COULD do however is to insert himself between the two parties and disrupt the channel. This would likely cause a new key exchange to occur which could be observed. In order to make key exchange truly secure, you must use 3rd party validation or a pre shared key which only the two communicators know.</p>