How can I see POST methods in raw HTTP that the computer sends to a page

httpmethodspost

that's it

isn't there a way to see the raw text file that my browser sends to a website when I do a POST method?

something like:

POST /path/script.cgi HTTP/1.0
From: frog@jmarshall.com
User-Agent: HTTPTool/1.0
Content-Type: application/x-www-form-urlencoded
Content-Length: 32
home=Cosby&favorite+flavor=flies

Thanks!

Best Answer

You need a proxy such as Fiddler. Fiddler is a freeware HTTP Debugging Proxy which allows you to inspect all HTTP Traffic, set breakpoints, and "fiddle" with incoming or outgoing data.

Related Topic