Tips & Tools

# To capture:
  tcpdump -w <file> port 80
# or:
  tcpdump -i <interface> -w <file> port 80

# (the later if there are multiple ethernets and the default one is wrong)
#^C to stop when you're done.

#To read HTTP from the file, easiest is to use strings:
 <strings <file> >
   ....