In wireshark, I am able to see the encrypted data to and fro from my PC. It does not use diffie hellman algorihm for key exchange because I see only the Client Key Exchange packet but there is no Server Key Exchange packet. That means the browser is sending the encrypted key to the server(encrypted using the server's public key).
But I do not see any encrypted data in that packet("Client Key Exchange"). How to view the encrypted key?
|
|
|||||||||||
|
|
Until recently the dissection of the ClientKeyExchange was like this(version 1.6 and below):
But if you use this verison(1.7.2 upwards) the key dissection will be like this:
|
|||
|
|
|
You won't see the encrypted shared-key, it's not exchanged. You can see the encrypted pre-master secret when using RSA authenticated key exchange. (Note that using Ephemeral Diffie-Hellman isn't the only reason for not seeing a server key exchange message: it could also use a If you follow the instructions about decrypting SSL with Wireshark, use the "SSL debug file" option to store the logs into a file. (Note that the user interface has changed slightly in newer versions of Wireshark, in the way you configure the private key.) The log files will contain the pre-master secret and the shared keys. (By the way, you need the server's private key to do this, of course.) Using the sample data provided on the Wireshark page, you get:
|
|||||||
|
|
Awesome write up here explaining how SSL works, notice at no time during this handshake is the private key (certificate) ever sent over the wire. http://4orensics.wordpress.com/2011/10/21/ssl-in-a-nutshell/ Long story short there is no way to decrypt SSL streams without the servers private key (unless you work for the NSA or something), however you may want to look into getting in between the server and client during the handshake and if the user does not check the validity of the certificate that is presented you are in business. Here is a tool that can do that for you among many others Of note I highly recommend the sans reading room article on SSL Mitm(Man in the Middle) attacks. hope that helps, dc |
|||
|