Skip to content

Instantly share code, notes, and snippets.

@meritt
Forked from peterc/httpdump
Created April 4, 2009 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meritt/90142 to your computer and use it in GitHub Desktop.
Save meritt/90142 to your computer and use it in GitHub Desktop.
# Monitor HTTP requests being made from your machine with a one-liner..
# Replace "en1" below with your network interface's name (usually en0 or en1)
sudo tcpdump -i en1 -n -s 0 -w - | grep -a -o -E "Host\: .*|GET \/.*"
# OR.. to be able to use as "httpdump" from anywhere, drop this into ~/.bash_profile:
# (again replace "en1" with correct network interface name)
alias httpdump="sudo tcpdump -i en1 -n -s 0 -w - | grep -a -o -E "Host\: .*|GET \/.*""
# All the above tested only on OS X.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment