Web History, Visits, Bookmarks & Search Terms
Cookies, Permissions & Form History
Like all browsers there are so many artifacts to find on people's web habits. In this post we'll continue on to Firefox's Downloads, Top Sites and Recently Closed Tabs on Android. These three can be found generally in the following location:
data\data\org.mozilla.firefox\databases
Downloads
Downloads can be found in the database here:
data\data\org.mozilla.firefox\databases\mozac_downloads_database*
Inside the SQLite database is only one table of interest, "downloads". It's a fairly simple table and pretty self explanatory by the column headers:
- created_at - the created/downloaded timestamp in Unix Epoch milliseconds
- file_name - name of the file being downloaded with file extension (if applicable)
- url - URL of where the file was downloaded from
- content_type - MIME type of the file (ex. image/png or application/octet-stream)
- content_length - size (in bytes) of the file
- status - status of the file download
- 3 = Paused
- 4 = Canceled
- 5 = Failed
- 6 = Finished
Top Sites
Top Sites are basically your top visited webpages that will show on your homescreen of Firefox as such:
Opening the database we only see one table of interest, "top_sites". Columns include:
- created_at - created date of the Top Site in Unix Epoch milliseconds
- title - title of the webpage
- url - URL of the webpage
- is_default - will show if it was a Top Site by default
- 0 = No
- 1 = Yes
Recently Closed Tabs
As the artifact name suggest, Recently Closed Tabs keeps a running list of tabs that were closed. This is of course the last webpage that tab was on before it was closed. The database can be found at the path:
data\data\org.mozilla.firefox\databases\recently_closed_tabs*
Once again we get another simple database with only one table of interest, you guessed, "recently_closed_tabs". Columns of use are the same as Top Sites:
- created_at - created date of the Top Site in Unix Epoch milliseconds
- title - title of the webpage
- url - URL of the webpage