Capturing internet activity

  • Thread starter Thread starter SLE
  • Start date Start date
S

SLE

Hi there,

I need to write an application which should monitor user activity
client-side and transmit captured information to a central server. User
activity means application usage and "internet activity" (browsing, FTP, or
whatever).

For the application usage part I decided to implement WMI Win32_Process
events which will do fine; however I need a solid approach for the internet
activity part - some advice would be greatly appreciated.


Thanks,
 
you could always download winpcap and simply sniff the packets.
That can be done by installing software but not reconfiguring anything.
On the other hand, if you just want to capture HTTP traffic, you can make
your own local proxy objects. That's pretty painful.

There are products to do all of this. It might make more sense to combine a
product or two on each desktop and then focus on the code to centralize the
data on the servers.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 
Back
Top