Can a unathorized user capture a ssl packet, resend it and login? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:25:25Z http://stackoverflow.com/feeds/question/461853 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/461853/can-a-unathorized-user-capture-a-ssl-packet-resend-it-and-login 0 Can a unathorized user capture a ssl packet, resend it and login? Brian Bolton 2009-01-20T15:49:39Z 2009-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#461875 0 Answer by Sunny for Can a unathorized user capture a ssl packet, resend it and login? Sunny 2009-01-20T15:54:33Z 2009-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#509712 0 Answer by Chris Kite for Can a unathorized user capture a ssl packet, resend it and login? Chris Kite 2009-02-04T01:06:35Z 2009-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>