How to sniff http requests

2019-04-10 18:55发布

I want to sniff a local HTTP request to an ASP.NET web application.

Is telnet an option?

How do you capture packets to a web application?

6条回答
beautiful°
2楼-- · 2019-04-10 19:38

There are browser add-ins that can make sniffing of the HTTP requests easy:

For Internet Explorer, there is the Fiddler Web Debugger.

For Firefox, there is the Live HTTP Headers add-in.

查看更多
Root(大扎)
3楼-- · 2019-04-10 19:47
一纸荒年 Trace。
4楼-- · 2019-04-10 19:48

Depending on your exact requirements, Fiddler may be sufficient.

查看更多
5楼-- · 2019-04-10 19:52

For ease of setup, I personally would use either the Tamper Data (https://addons.mozilla.org/en-US/firefox/addon/966) or Live HTTP Headers (https://addons.mozilla.org/addon/3829) plugin for the FireFox browser - or for a lower level solution WireShark (http://www.wireshark.org/)

查看更多
萌系小妹纸
6楼-- · 2019-04-10 19:56

Have you tried browser plugins that allow you to do this? Firebug, etc.

查看更多
神经病院院长
7楼-- · 2019-04-10 19:57

http://www.wireshark.org/ is a very advanced and free sniffer/protocol analyzer. I use it on our servers to monitor things from sip protocol info to raw http data. Its all you need and you can add filter rules to just get the data from certain IP etc. ie:

ip.addr == 192.168.1.1

Raw packets and headers all included.

查看更多
登录 后发表回答