Pedrum
Pedrum

Reputation: 644

Getting the list of every web address being accessed?

I've been trying very hard to write a code in C# that lets me know what web address is accessed from my computer no matter which browser I am using or which software is accessing that web address.

This is very important because there might be softwares on my computers opening up web pages in the background that I am not aware of.

I need the code to have a list of the web addresses, even if the recording begins when ever you run the program its fine...

Upvotes: 0

Views: 133

Answers (2)

Justin Harvey
Justin Harvey

Reputation: 14672

Use Fiddler, you can get it here...

http://www.fiddler2.com/fiddler2/

Upvotes: 2

Omaha
Omaha

Reputation: 2292

It sounds like what you might want is a proxy server.

Check out Squid.

Upvotes: 2

Related Questions