vote up 1 vote down star

I wanted to know is there any way programmatically in win32, where I can get the URL being fetched from browser.

Like for example as we have MIB table, which shows data sent and received from Ethernet card, can we get the URL being fetched from system

Thanks in advance.

flag

18% accept rate

4 Answers

vote up 0 vote down

Look into wininet hooking. Might be what you're looking for.

link|flag
vote up 0 vote down

There is no simple way to do this. The main problem you will encounter is that each browser on your system will independently connect to a webserver. That's just a straightforward HTTP connection, usually on port 80. The browser will send the URL in an HTTP request, possibly in multiple TCP packets. So, unless you are going to inspect and reassemble those TCP packets, you're not going to get this information. Even if you did, you'd miss out on the URLs of HTTPS fetches (by design).

An easier solution is to set up a proxy, and hope that the webbrowser doesn't bypass it.

link|flag
vote up 1 vote down

This is an IE-only solution, but if you write a browser helper object, it will be notified before IE navigates to a new URL.

link|flag
vote up 0 vote down

You could try using WinPCap, which is what's utilized by Wireshark. What this would allow you to do is put the network interface into "promiscuous mode," and from there you could just look for HTTP traffic. From there, you could extract the URLs that are being requested, no matter which browser's being used.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.