Reputation: 12695
I'd like to develop an application to monitor HTTP traffic to/from my PC. (what websites are being visited by the PC user).
The problem is, that I couldn't get any articles how to start developing application like that.
What am I missing?
Upvotes: 2
Views: 3265
Reputation: 6585
You can also use the free Pcap.Net project.
It is a wrapper for WinPcap that includes a packet interpretation framework, which should make monitoring HTTP traffic pretty easy.
Upvotes: 0
Reputation: 92752
There's a .Net app called Fiddler which has this functionality; for use in your app, there's the FiddlerCore component
Upvotes: 4
Reputation: 37172
WinPcap: The Windows Packet Capture Library
Its very powerfull WireShark uses it.
There is C# port of this library available called SharpPCap.
SharpPcap - A Packet Capture Framework for .NET - Code Project
Upvotes: 8