What is the best way to view the HTTP response headers from a request against a particular URL? Telnet or is there some other really good command or tool?

link|improve this question

4  
URLs don't have a "header" per se, requests and responses do. A request is issued against a particular resource, identified by a URL. Are you asking for a tool which shows the response headers returned from a particular request against some URL? – Rob Apr 30 '09 at 21:58
Yes exactly that. – Daniel Apr 30 '09 at 21:59
Thought so, but the wording wasn't quite clear. – Rob Apr 30 '09 at 22:00
feedback

8 Answers

up vote 6 down vote accepted

I use the httpfox Firefox extension to view all HTTP requests and responses (including header and body) initiated from the web browser in the interval I specify (by pressing the start-recording and the stop-recording buttons). httpfox presents the data in a structured way in which I can quickly find the request I am interested in. It nicely complements LiveHTTPHeaders, because httpfox can view requests in the past as well.

link|improve this answer
Thanks for this! Very helpful! – Daniel Apr 30 '09 at 22:16
feedback

I find that Fiddler is my weapon of choice, although there are firefox plugins as well. Fiddler will show you all the HTTP Requests, their response status, all the headers, with different views (raw, hex, image), a timeline view, HTTPS Connects, everything.

link|improve this answer
1  
Fiddler rules! :) – MaSuGaNa Apr 30 '09 at 21:59
In their site, they offer to install some addons but after virustotal test, there's a trojan hic virustotal.com/file-scan/… – Nam G. VU Nov 8 '11 at 4:03
feedback
  • HttpFox for Firefox is pretty good. It will show the headers in real time. I prefer it to Live HTTP Headers.
  • Microsoft Fiddler for Internet Explorer is a web debugger that logs all HTTP traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP traffic, set breakpoints, and fiddle with incoming or outgoing data
  • Wireshark is a complete network protocol analyzer. It is good, but it might be overkill if HTTP headers is all that are required. It has problems if the client and server are on the same machine.
link|improve this answer
feedback

Firebug addon for firefox is the easiest way i think.

link|improve this answer
feedback

On linux I use wget -S [url] that gets the file and shows all headers sent by the server

link|improve this answer
feedback

For IE, Fiddler will work. Or you can go all out with Wireshark.

link|improve this answer
1  
FWIW, you can watch traffic from ANY web browser (or any other client which supports proxies) using Fiddler. – EricLaw -MSFT- Jun 30 '09 at 21:04
feedback

There is a better choice (in my point of view)

It's a Firefox extension calle HTTPfox. You can not only see the header but much more information. It´s a very complete HTTP analyzer

https://addons.mozilla.org/en-US/firefox/addon/6647

link|improve this answer
feedback

I found a good tool to do it for Firefox called Live HTTP Headers 0.14:

https://addons.mozilla.org/en-US/firefox/addon/3829

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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