I'm using tshark to sniff my packets and I'm only concerned with the http header (preferably in the form its sent, but I'll take what I can get).

I tried using:

tshark tcp port 80 or tcp port 443 -V -R "http"

Which gave me the header, but also content (which I don't want as its a large amount of garbage to parse). I really only care about the header, is there any easy way to get just that (other than parsing the data myself).

Edit: I should qualify I also care about host/port so I can keep track of requests across multiple packets.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You can use the specific HTTP header display filters to show either just the request headers, just the response headers or both.

For just the request headers:

tshark tcp port 80 or tcp port 443 -V -R "http.request"

For just the response headers:

tshark tcp port 80 or tcp port 443 -V -R "http.response"

And for both the request and response headers:

tshark tcp port 80 or tcp port 443 -V -R "http.request || http.response"

Note: This does not filter out just the headers, just the packets that contain the headers, so you will likely still get some data, but the amount of data should be less than you would otherwise.

link|improve this answer
We're still talking about a ton of data as if I have a request for en.wikipedia.org I'm getting back 750k when I really only want less than 1k in headers. – tzenes Aug 19 '10 at 21:38
tshark is a packet capture tool, you may want to look into something like Fiddler or another HTTP-only analysis tool. – heavyd Aug 19 '10 at 21:45
I'm not familiar with fiddler but my goal is to track connection throughput so I want to know requesttime/firstbyte/lastbyte while retaining HTTP headers. tshark already solve most of my problem, I just need to get the headers. – tzenes Aug 19 '10 at 21:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.