I am using SharpPCap to filter packets. Does anyone know how to detect if a packet is for a secured http connection?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You would have to sniff the traffic from the start of the TCP session to observe the SSL handshake go back and forth. Once the encrypted session is set up, any individual packet is going to be indistinguishable from random noise.

To discover otherwise is to find a major flaw in the symmetric cipher. (Yes, the encryption really is that good.)

Of course, having a destination of port 443 is a hint that you are looking at an https connection... But that is just a convention.

link|improve this answer
What do I use to trace back ? – user775602 Jun 3 '11 at 5:07
feedback

Your Answer

 
or
required, but never shown

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