Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show sent POST Values with Fiddler..How do i do that?

Tags:

fiddler

I make some requests to a site and i want to see, what kind of variables has been sent to the server..

May be its possible with fiddler but i can't figure it out, how to do it..

like image 385
user877167 Avatar asked Aug 04 '11 10:08

user877167


People also ask

How do you see responses in Fiddler?

In Fiddler, select the Inspectors tab to see the Request and Response. Now, this tab is split horizontally; the Request Inspectors are across the top, and the Response Inspectors are across the bottom.

How do you find the payload in Fiddler?

Sending GET Request To create a GET request inside Fiddler, choose the GET method and type the server URL in the URL box. Then click the Execute button. NOTE: Once the request is sent to the server, use the Inspectors to inspect the response.


Video Answer


2 Answers

You can do this in Fiddler using the following steps.

  • Locate the request in fiddler that relates to the post - you should be able to see the URL you expect in the URL column.

  • Select that line and the detailed view will open. There is a WebForms tab (inside "Inspectors") that displays the POST data in a neat table. You can also see it in the Raw tab, but it isn't nicely formatted like the WebForms tab.

I have made a screenshot to help you:

Fiddler POST values

like image 78
Fenton Avatar answered Sep 30 '22 09:09

Fenton


POST data can be seen in the Inspectors -> Raw window which will display the whole request along with POST data and headers.

EDIT: Yep... The Inspectors -> WebForms dialog would be another way however I usually don't make much use of it... Don't know why.

like image 20
brezanac Avatar answered Sep 30 '22 11:09

brezanac