3

I'm trying to decrypt SSL traffic in Wireshark, and it partially works because I'm able to view the decrypted headers. The problem is that I don't see any of the packet contents, only their headers. Is there an explanation for this behaviour?

A bit more detail: we used openssl to generate keys and certificates with the command: openssl req -config *.cnf -new -x509 -extensions v3_ca -keyout *.key -out *.crt -days 1825

and then to decrypt the private key to a PKCS#8 format, which wireshark supposedly supports, we issued this command: openssl pkcs8 -nocrypt -in *.key -informat DER -out *.key -outformat PEM

In Wireshark we issued the following parameters in SSL decryption section: 10.10.10.10,443,http,*.key - where 10.10.10.10 is the client we're trying to MITM using sslsniff. We have also tried localhost and servers IP with no success. Any suggestions?

1

3 Answers 3

5

The SSL connection was probably using Diffie-Hellman to establish the session key. DH allows two parties to establish a shared secret over an insecure channel with no prior communication. This means that even though you have the private key, you can't determine the session key by inspecting the traffic. To decode a DH session you have to actively MITM the connection, or get one of the parties to log the session key.

2

You will have to capture and then configure Wireshark to decrypt.

Check out this tutorial (steps 2 and 3 seem to address your problem).

You may also want to check out Wireshark's wiki entry on TLS.

2
  • Thanks for the reply, but I've actually used that guide and ended up only being able to decrypt the headers. Commented Feb 13, 2012 at 20:13
  • @user1049697 This person was unable to see packets because he used a Diffie-Hellman cipher. seclists.org/wireshark/2009/Nov/75
    – sealz
    Commented Feb 13, 2012 at 20:17
0

Could you have been mistaking encrypted data for compressed data? Web servers usually use some form of data compression (gzip or deflate) which could obscure the payload to look like it was encrypted.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .