vote up 0 vote down star

Here's the scenario:

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?

This is a homegrown login system running on coldfusion.

flag

75% accept rate
This sounds like an IT/Security question, not a programming one. You might find help at one of these sites: stackoverflow.com/questions/321618/… – EBGreen Jan 20 at 15:53

2 Answers

vote up 0 vote down check

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.

link|flag
Thanks for the answer. I read this same thing in several other sources. – Brian Bolton Feb 6 at 16:09
vote up 0 vote down

Short answer: not with a normal browser.

Long answer: yes, if the user is not careful, and discards the warning the browser provides for not matching server name/certificate.

Good explanation of how SSL works.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.