Jump to content
Nytro

Decrypting TLS Browser Traffic With Wireshark

Recommended Posts

Posted

Decrypting TLS Browser Traffic With Wireshark – The Easy Way!

Intro

Most IT people are somewhat familiar with Wireshark. It is a traffic analyzer, that helps you learn how networking works, diagnose problems and much more.

2015-02-11-22_29_11-.png

One of the problems with the way Wireshark works is that it can’t easily analyze encrypted traffic, like TLS. It used to be if you had the private key(s) you could feed them into Wireshark and it would decrypt the traffic on the fly, but it only worked when using RSA for the key exchange mechanism. As people have started to embrace forward secrecy this broke, as having the private key is no longer enough derive the actual session key used to decrypt the data. The other problem with this is that a private key should not or can not leave the client, server, or HSM it is in. This lead me to coming up with very contrived ways of man-in-the-middling myself to decrypt the traffic(e.g. sslstrip).

Session Key Logging to the Rescue!

Well my friends I’m here to tell you that there is an easier way! It turns out that Firefox and the development version of Chrome both support logging the symmetric session key used to encrypt TLS traffic to a file. You can then point Wireshark at said file and presto! decrypted TLS traffic. Read on to learn how to set this up.

Setting up our Browsers

So if you prefer to use Chrome you must use the Chrome dev channel for this to work, or the default firefox will work too. Next we need to set an environmental variable.

On Windows:

Go into your computer properties, then click “Advance system settings” then “Environment Variables…”

2015-02-11-21_36_51-Clipboard.jpg

Add a new user variable called “SSLKEYLOGFILE” and point it at the location that you want the log file to be located at.

2015-02-11-21_38_57-Environment-Variables.jpg

On Linux or Mac OS X:

[TABLE=width: 704]

[TR]

[TD=class: gutter]

1

[/TD]

[TD=class: code]$ export SSLKEYLOGFILE=~/path/to/sslkeylog.log[/TD]

[/TR]

[/TABLE]

You can also add this to the last line of your

[TABLE=width: 704]

[TR]

[TD=class: gutter]

1

[/TD]

[TD=class: code]~/.bashrc[/TD]

[/TR]

[/TABLE]

on Linux, or

[TABLE=width: 704]

[TR]

[TD=class: gutter]

1

[/TD]

[TD=class: code]~/.MacOSX/environment[/TD]

[/TR]

[/TABLE]

on OS X so that it is set every time you log in.

The next time that we launch Firefox or the dev channel of Chrome they will log your TLS keys to this file.

Setting up Wireshark

You need at least Wireshark 1.6 for this to work. We simply go into the preferences of Wireshark

2015-02-11-21_45_30-.jpg

Expand the protocols section:

2015-02-11-21_48_49-2015-02-11-21_45_59-Wireshark_-Preferences-Profile_-Default.jpg

Browse to the location of your log file

2015-02-11-21_47_10-Wireshark_-Preferences-Profile_-Default.jpg

The Results

This is more along the lines of what we normally see when look at a TLS packet,

2015-02-11-22_29_11-.png

This is what it looks like when you switch to the “Decrypted SSL Data” tab. Note that we can now see the request information in plain-text! Success!

2015-02-11-22_30_28-_Wi-Fi-Wireshark-1.12.3-v1.12.3-0-gbb3e9a0-from-master-1.12.png

Conclusion

I hope you learned something today, this makes capturing TLS communication so much more straightforward. One of the nice things about this setup is that the client/server machine that generates the TLS traffic doesn’t have to have Wireshark on it, so you don’t have to gum up a clients machine with stuff they won’t need, you can either have them dump the log to a network share or copy it off the machine and reunite it with the machine doing the packet capture later. Thanks for stopping by!

References:

Mozilla Wiki

Imperial Violet

Photo Credit: Mike

Sursa: https://jimshaver.net/2015/02/11/decrypting-tls-browser-traffic-with-wireshark-the-easy-way/

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...