Skip to content

Instantly share code, notes, and snippets.

@felixgr
Created October 2, 2016 14:11
Show Gist options
  • Save felixgr/5bef12e4bee44686d20cd3f73e04ef04 to your computer and use it in GitHub Desktop.
Save felixgr/5bef12e4bee44686d20cd3f73e04ef04 to your computer and use it in GitHub Desktop.
Dissect Raw TLS data with tshark / Wireshark
#!/bin/sh
od -Ax -tx1 -v /tmp/data | text2pcap -q -T443,443 - /tmp/out.pcap
tshark -nr /tmp/out.pcap -V -O ssl | grep "Secure Sockets Layer" -A10000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment