Heim >Backend-Entwicklung >PHP-Tutorial >麻烦大家推荐一款分析http的工具

麻烦大家推荐一款分析http的工具

WBOY
WBOYOriginal
2016-06-06 20:34:231044Durchsuche

在做一个模拟登陆。
该放的参数都放了,就是没法登陆。
想拿这个模拟的http分析一下
chrome自带的分析不了
自己找了fiddler不能捕获到这个curl的请求
是程序模拟出来的一个请求 不是浏览器发起的
有什么工具能捕获到这种http请求?

回复内容:

在做一个模拟登陆。
该放的参数都放了,就是没法登陆。
想拿这个模拟的http分析一下
chrome自带的分析不了
自己找了fiddler不能捕获到这个curl的请求
是程序模拟出来的一个请求 不是浏览器发起的
有什么工具能捕获到这种http请求?

httpanalyzer 这个软件可以

curl 可以设置代理, 启动 fiddler 的情况下, 将 代理设置为 127.0.0.1:8888 (默认).

http://php.net/manual/en/function.curl-setopt.php

<code>php</code><code>curl_setopt ( $ch, CURLOPT_PROXY, 'http://127.0.0.1:8888' );
</code>

然后你就能在 fiddler 中查询HTTP请求/响应的情况了.

burpsuite

如果你是想debug,可以用这个:

node-inspector

<code>Install
$ npm install -g node-inspector
Start
$ node-debug app.js
</code>

你可以用wireshark试一下。监听一个网卡,加上过滤条件,类似ip.addr == 127.0.0.1 and tcp.port=80样的规则,然后你就可以分析它抓到的包了。

charles: http://www.charlesproxy.com/

腾讯前端团队出品。 livepool :http://rehorn.github.io/livepool/

httplook

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn