Dean
Dean

Reputation: 517

How would i go about creating a external url monitor?

How would I go about creating an application that can somehow see URLs I am viewing in most popular browsers?

Can it be done out of process?
In what ways can this be done?
Can it be done without browser plugins?

Upvotes: 1

Views: 81

Answers (2)

Henk Holterman
Henk Holterman

Reputation: 273244

You will have to install something in your network infrastructure and then collect data from it.

That could be a proxy server (eg Fiddler) or you can look at tools like WireShark (pcap).

Upvotes: 1

BugFinder
BugFinder

Reputation: 17858

The simplest answer is use a proxy server.. prevent html access out except from the proxy server so they have to use it, then all url requests go to the proxy server, even if you choose to make it yourself, then you can collect the URLS either from logs or something and off you go.

Upvotes: 2

Related Questions