如何使用 tcpdump 或从头开始编写一个模仿 Fiddler 的程序?
当 Fiddler 不在 Mac OS X 或 Ubuntu 上时,如果我们不安装/使用 Wireshark 或任何其他更重型的工具,有什么方法可以使用 tcpdump
以便
1) 它可以打印 。
GET /foo/bar HTTP/1.1
[request content in RAW text]
[response content in RAW text]
POST /foo/... HTTP/1.1
这应该可以通过 tcpdump 或在简短的 shell 脚本或 Ruby / Python / Perl 脚本中使用 tcpdump 来完成
2) 实际上,如果脚本可以输出 HTML,
GET /foo/bar HTTP/1.1
POST /foo/... HTTP/1.1
在页面上供任何浏览器显示,然后当单击其中任何一行时,它将展开以显示 RAW 内容,就像上面的 (1) 那样。再次单击,它将隐藏详细信息。扩展 UI 可以使用 jQuery 或任何 JS 库来完成。剧本可能很短……可能不到 20 行?有谁知道如何为(1)或(2)做到这一点?
When Fiddler is not on Mac OS X or Ubuntu, and if we don't install/use Wireshark or any other more heavy duty tools, what is a way to use tcpdump
so that
1) It can print out
GET /foo/bar HTTP/1.1
[request content in RAW text]
[response content in RAW text]
POST /foo/... HTTP/1.1
this should be able to be done by tcpdump or by using tcpdump in a short shell script or Ruby / Python / Perl script.
2) Actually, it can be neat if a script can output HTML, with
GET /foo/bar HTTP/1.1
POST /foo/... HTTP/1.1
on the page, for any browser to display, and then when clicked on any of those lines, it will expand to show the RAW content like (1) above does. Click again and it will hide the details. The expansion UI can be done using jQuery or any JS library. The script may be short... possibly less than 20 lines? Does anybody know how to do it either for (1) or (2)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有两个用于 HTTP GET 和 HTTP 的 tcpdump 过滤器。 HTTP 发布:
Here are two tcpdump filters for HTTP GET & HTTP POST: