Is there an open source (read free) tool that allows me to see my browser's HTTP commands?

296 Views Asked by At

I am getting into HTTP protocol specifics and I would like to see/understand the calls my browser makes as it is being used. I use Firebug (with Firefox) to look at/debug AJAX interactions, etc, but don't see the full HTTP conversation.

Is there something similar for viewing HTTP commands issued by a browser?

6

There are 6 best solutions below

2
On BEST ANSWER

I use Tamper Data, a Firefox add-on, to see HTTP requests and responses, and to manipulate them.

0
On

Proxy from Burp Suite lets you see/modify HTTP requests/responses.

1
On

Yes, you can monitor your connection with Wireshark.

6
On

Fiddler is pretty good for looking at the HTTP level, and wireshark will let you look at whats going on at the TCP level.

2
On

HttpFox or the venerable LiveHttpHeaders

0
On

You can see all the HTTP requests your browser makes for a page (not just AJAX) with the Firebug net panel. Or you can switch to a proxy tool like Fiddler or Charles to see all the http requests made by the browser. If you need more detail, Microsoft VRTA is a free tool that makes netmon data easier to read, and doesn't depend on a proxy.