3

I am used to analyze http traffic response times and other useful statistical informations using justniffer for linux equipped servers.

Does anybody knows about an http sniffer like justniffer for Windows server?

user9517
  • 115,471
  • 20
  • 215
  • 297
user104443
  • 31
  • 1

2 Answers2

3

Wireshark will run with the windows port of libpcap (installer includes it).

Fiddler2 is a HTTP only proxy for good debugging, but more from a browser POV.

Wireshark is the nearest thing to justniffer, albeit with a GUI. It can follow and reassemble TCP streams, and decode HTTP very clearly.

Tom O'Connor
  • 27,480
  • 10
  • 73
  • 148
  • now days i prefer netmon to wireshark. – tony roth Dec 17 '11 at 16:04
  • Eh. To each their own. Wireshark is very reminiscent of it's tcpdump roots. – Tom O'Connor Dec 17 '11 at 18:37
  • this tool is good. http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=21462 – tony roth Dec 18 '11 at 16:24
  • wireshark is good for debugging. But it does not collect info in a log format usable for statistics processing. I need to collect http response times per url for graphing at a later stage. fiddler is good for tracing and debugging your own web traffic. not entire web site traffic – user104443 Dec 19 '11 at 11:54
1

Wireshark has TShark.exe commandline tool (and not only that).

You can also use Microsoft Network Monitor 3.4. If you monitor http traffic, you should check the HTTP Troubleshoot Column Layout.

NM 3.4 also has nmcap.exe to monitor frames by commandline.

There is also RawCap, that allows you to capture frames from MS TCP Loopback inteface (127.0.0.1).

colemik
  • 759
  • 1
  • 12
  • 24
  • Microsoft Network Monitor seems to be very interesting but none of them collect server response times per url. That is which i am mainly interested in. I think that i will install a linux equiped virtual machine for "capturing" all network traffic of the guest window server. – user104443 Dec 20 '11 at 11:18
  • did you look at the round trip analyzer from ms research – tony roth Dec 20 '11 at 17:52