Created
February 6, 2016 18:08
-
-
Save DanielMuller/25f239a23dd8e7ed8e64 to your computer and use it in GitHub Desktop.
Dump HTTP headers
This file contains hidden or 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
# From here: http://serverfault.com/questions/504431/human-readable-format-for-http-headers-with-tcpdump/633452#633452 | |
sudo tcpdump -A -s 10240 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | egrep --line-buffered "^........(GET |HTTP\/|POST |HEAD )|^[A-Za-z0-9-]+: " | sed -r 's/^........(GET |HTTP\/|POST |HEAD )/\n\1/g' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment