Can a unathorized user capture a ssl packet, resend it and login? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T07:25:25Zhttp://stackoverflow.com/feeds/question/461853http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/461853/can-a-unathorized-user-capture-a-ssl-packet-resend-it-and-login0Can a unathorized user capture a ssl packet, resend it and login?Brian Bolton2009-01-20T15:49:39Z2009-02-04T01:06:35Z
<p>Here's the scenario:</p>
<p>We have users login on a secure connection. Could an unathorized user capture packets sent from the users machine to the server and then resend them? Would this allow them to login?</p>
<p>This is a homegrown login system running on coldfusion.</p>
http://stackoverflow.com/questions/461853/can-a-unathorized-user-capture-a-ssl-packet-resend-it-and-login/461875#4618750Answer by Sunny for Can a unathorized user capture a ssl packet, resend it and login?Sunny2009-01-20T15:54:33Z2009-01-20T15:54:33Z<p>Short answer: not with a normal browser.</p>
<p>Long answer: yes, if the user is not careful, and discards the warning the browser provides for not matching server name/certificate.</p>
<p><a href="https://www.securetrust.com/resources/how-ssl-works" rel="nofollow">Good explanation</a> of how SSL works.</p>
http://stackoverflow.com/questions/461853/can-a-unathorized-user-capture-a-ssl-packet-resend-it-and-login/509712#5097120Answer by Chris Kite for Can a unathorized user capture a ssl packet, resend it and login?Chris Kite2009-02-04T01:06:35Z2009-02-04T01:06:35Z<p>No.</p>
<p>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.</p>