如何检查发布的表单数据?

时间:2022-10-30 08:18:15

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.

我正在寻找除了数据包嗅探之外的其他东西。

5 个解决方案

#1


Firebug in conjunction with Firefox.

Firebug与Firefox结合使用。

#2


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.

此外,对于Firefox,有一些名为HTTPfox和Tamperdata的插件,允许您使用POST数据执行更多操作,然后使用firebug。我个人在我的工作电脑上都有三个。

#3


Fiddler for Internet explorer.

互联网资源管理器的提琴手。

#4


Charles - web debugging proxy app

Charles - web调试代理应用程序

go to website

去网站

#5


<?php print_r($_POST);?>

#1


Firebug in conjunction with Firefox.

Firebug与Firefox结合使用。

#2


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.

此外,对于Firefox,有一些名为HTTPfox和Tamperdata的插件,允许您使用POST数据执行更多操作,然后使用firebug。我个人在我的工作电脑上都有三个。

#3


Fiddler for Internet explorer.

互联网资源管理器的提琴手。

#4


Charles - web debugging proxy app

Charles - web调试代理应用程序

go to website

去网站

#5


<?php print_r($_POST);?>