Skip to content

Instantly share code, notes, and snippets.

@andreyuhai
Last active June 24, 2020 10:41
Show Gist options
  • Save andreyuhai/3a222888791c8cac75987d7e25e913f8 to your computer and use it in GitHub Desktop.
Save andreyuhai/3a222888791c8cac75987d7e25e913f8 to your computer and use it in GitHub Desktop.
Wireshark Filter for Analysis of SSL Traffic

Wireshark Filter for SSL Traffic

Client Hello:

ssl.handshake.type == 1

Server Hello:

ssl.handshake.type == 2

NewSessionTicket:

ssl.handshake.type == 4

Certificate:

ssl.handshake.type == 11

CertificateRequest:

ssl.handshake.type == 13

ServerHelloDone:

ssl.handshake.type == 14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment