3

I am reverse engineering an app and I need to see what is in the post data without viewing the form source. Is a there a decent app/plugin to see what is being posted?

I'm looking for something other then packet sniffing.

tshepang
  • 12,111
  • 21
  • 91
  • 136
UnkwnTech
  • 88,102
  • 65
  • 184
  • 229

5 Answers5

10

Also for Firefox, there are plugins named HTTPfox and Tamperdata that allow you to do more with POST data then firebug. I personally have all three on my work computer.

James McMahon
  • 48,506
  • 64
  • 207
  • 283
3

Fiddler for Internet explorer.

shahkalpesh
  • 33,172
  • 3
  • 63
  • 88
  • Ah, beat me to it. It should work for any web browser. Just set the proxy info. Chrome picks up the proxy setting automatically, just like IE does. – Philip Tinney Jan 12 '09 at 05:28
3

Charles - web debugging proxy app

go to website

Dori
  • 18,283
  • 17
  • 74
  • 116
2

Firebug in conjunction with Firefox.

nshaw
  • 2,585
  • 2
  • 19
  • 22
  • 10
    This is really a bad answer and does not deserve to be accepted. The question is **How** to do so, not what tool to use for it. – Steven Roose Apr 26 '13 at 13:27
  • How do you use Firebug to inspect form data being posted? I would like to know how to do this, but you did not answer the question. – oyouareatubeo Nov 06 '13 at 00:02
  • After installing firebug, go to the webpage you want to "reverse engineer". Press F12 to start firebug, look for the console tab (if I remember it had to be enabled first). Enable also the "persistent" option, so it doesn't clear after every page. When you do the post from the web page, everything will be registered, and you expand the entries to see the requests and responses. – Emil Vatai Apr 05 '14 at 15:42
  • 1
    The question was precisely what tool to use.. op said `Is a there a decent app/plugin` – I wrestled a bear once. May 10 '14 at 16:41
-10
<?php print_r($_POST);?>
Ali
  • 261,656
  • 265
  • 575
  • 769