SSL protocol seems to be missing for me. It doesn't show up in the preferences menu and Wireshark doesn't capture any SSL packets from any program I try. I also had a failed handshake trying to just setup a basic OpenSSL server, but I'm not exactly sure if that's part of the problem, as I didn't even bother fixing it.

Windows 7, latest release of Wireshark. Really not sure what else to add, tried searching around google to no avail. Any help is appreciated!

1 Answer

The SSL protocol (SSLv2 and SSLv3) hasn't been in use for several years, having been superseded by TLSv1. While some programs still start with SSLv2-compatible handshakes or occassionally use the SSLv2-style record format, they all generally use TLS nowadays and the Wireshark configuration page has been renamed accordingly. The display filter is tls.

(Yes, HTTPS is HTTP-over-TLS and OpenSSL is actually a TLS library – despite the name, it doesn't even have SSLv2/v3 support in it anymore.)

The Wireshark TLS dissector handles both modern TLSv1.x and the obsolete SSLv2/v3 versions.

Screenshot of Wireshark's TLS settings page

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy