Bobo2012
Bobo2012

Reputation: 149

Saving all browsers urls history

I need to write a log system that will save all the domain names and time of visit (if possiable the closing time too) that was made using all browsers which are installed on windows.

for example: http://stackoverflow.com 14:45 - 16:55

I couldnt find any implementation info on google, Please forward me or explain what is the way to go.

Upvotes: 0

Views: 846

Answers (2)

R Ghosh
R Ghosh

Reputation: 612

See if you can read the history files for each browser and parse the details from there.

CHROME:

in xp = C:\Documents and Settings\USER\Local Settings\Application Data\Google\Chrome\User Data\Default\ in vista = C:\users\USER\Local Settings\Application Data\Google\Chrome\User Data\Default\

FIREFOX: C:\Documents and Settings\owner\Local Settings\History

IE: C:\Documents and Settings\YOURUSERNAME\Local Settings\History

I have never tried this an don't know if the history is stored encrypted, and what level of details (time opened, time closed etc) are stored.

Upvotes: 1

Yahia
Yahia

Reputation: 70369

what you ask for is highly dependent on browser/browser version used (and potentially Windows version too)...

Since you don't describe what the goal is it is hard to come up with specific solutions/options...

One rather browser-agnostic option would be to implement a proxy and configure the system/browsers to use that proxy... the proxy would then do the logging. but this could easily be circumvented by changing the proxy configuration in the browser...

Upvotes: 2

Related Questions