Last active
March 8, 2021 17:01
-
-
Save gadiener/fcc17ebdda898ef24c38e887d7b0c567 to your computer and use it in GitHub Desktop.
SNI Client Hello Check with tcpdump
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
tcpdump -i any -s 1500 '(tcp[((tcp[12:1] & 0xf0) >> 2)+5:1] = 0x01) and (tcp[((tcp[12:1] & 0xf0) >> 2):1] = 0x16)' -An | |
# sudo tcpdump dst port 9443 -A |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment