Difference between revisions of "Mozilla Firefox"
Joachim Metz (Talk | contribs) |
Joachim Metz (Talk | contribs) |
||
| Line 10: | Line 10: | ||
== History == | == History == | ||
| − | Firefox 3 stores the history of visited sites in a file named '''places.sqlite'''. This | + | Firefox 3 stores the history of visited sites in a file named '''places.sqlite'''. This file uses the [[SQLite database format]]. |
'''places.sqlite''' can be found in the following locations: | '''places.sqlite''' can be found in the following locations: | ||
| Line 46: | Line 46: | ||
+ datetime.timedelta( microseconds=timestamp ) | + datetime.timedelta( microseconds=timestamp ) | ||
</pre> | </pre> | ||
| + | |||
| + | == Downloads == | ||
| + | Firefox 3 stores the history of downloads sites in a file named '''downloads.sqlite'''. This file uses the [[SQLite database format]]. | ||
| + | |||
| + | '''downloads.sqlite''' can be found in the same location as '''places.sqlite'''. | ||
== See Also == | == See Also == | ||
Revision as of 04:51, 3 November 2011
|
Please help to improve this article by expanding it.
|
Mozilla Firefox is a Free and Open Source web browser developed by the Mozilla Foundation.
It can have many add-ons which give it extra capabilities.
Contents |
Anonymous Browsing
Mozilla Firefox can be used in anonymous browsing (see The Onion Router). However, it is known that Firefox reveals computer's uptime in TLS (SSL) "Client Hello" packets allowing investigator correlate anonymous and non-anonymous traffic [1].
This bug affects Firefox 2 (all versions) and Firefox 3 Beta3.
History
Firefox 3 stores the history of visited sites in a file named places.sqlite. This file uses the SQLite database format.
places.sqlite can be found in the following locations:
On Linux
/home/$USER/.mozilla/firefox/$PROFILE.default/places.sqlite
On MacOS-X
/Users/$USER/Library/Application Support/Firefox/Profiles/$PROFILE.default/places.sqlite
On Windows XP
C:\Documents and Settings\%USERNAME%\Application Data\Mozilla\Firefox\Profiles\%PROFILE%.default\places.sqlite
On Windows Vista, 7
C:\Users\%USERNAME%\AppData\Roaming\Mozilla\Firefox\Profiles\%PROFILE%.default\places.sqlite
Timestamps
The places.sqlite uses the following timestamps.
moz_historyvisits.visit_date
The visit date and time values in the moz_historyvisits table are in (the number of) microseconds since January 1, 1970 UTC
Some Python code to do the conversion into human readable format:
date_string = datetime.datetime( 1970, 1, 1 )
+ datetime.timedelta( microseconds=timestamp )
Downloads
Firefox 3 stores the history of downloads sites in a file named downloads.sqlite. This file uses the SQLite database format.
downloads.sqlite can be found in the same location as places.sqlite.