views:

131

answers:

3

Is it possible to trap http/https requests for filtering in windows?

+2  A: 

You can do this with a proxy, e.g., Fiddler.

RedFilter
Doesn't work too well with HTTPS, of course, but it's scriptable.
MSalters
+6  A: 

If you need to sniff the packets, you could use Ethereal or Wireshark

Update:

Try WinPcap then it gives you a lot of features along with the popular *nix Library libpcap API

Ram
I need to do it though programing...
Umair Ahmed
@Umair: winpcap _is_ for programming. read it's documentation: http://www.winpcap.org/docs/docs_40_2/html/main.html
Idan K
A: 

Microsoft's Network Monitor is pretty good. I've used wireshark, and Network Monitor is just as good, if not better.

John Weldon