Viewing History Files - DB Browser
Last updated
Was this helpful?
Last updated
Was this helpful?
Extracting and viewing browser history from SQLite databases can provide crucial insights during a forensic investigation. This step-by-step guide will focus on using DB Browser for SQLite, a tool designed to view and edit SQLite databases, which is commonly used for analyzing browser history stored in files like places.sqlite
(Firefox) and History
(Chrome, Edge).
Download: Go to the official DB Browser for SQLite website () and download the version compatible with your operating system.
Install: Run the installer and follow the on-screen instructions to install DB Browser for SQLite on your computer.
Use to find all Browser History files (Chrome, Firefox & Edge) on a system.
Firefox: Find the places.sqlite
file in the user's profile directory. Example path for Windows 10:
Chrome/Edge: Locate the History
file in the user's profile directory. Example path for Chrome on Windows 10:
Note: Replace USER
with the actual username, and <random text>
with the specific folder name on your system.
Important: It’s crucial to work on a copy of the database file to preserve the integrity of the original evidence.
Copy the places.sqlite
or History
file to another location where you can safely analyze it.
Launch DB Browser for SQLite: Open the application installed in Step 1.
Open Database: Click on “Open Database” at the top and navigate to the copy of your database file (places.sqlite
or History
). Select the file and click “Open”.
View Tables: Once the database is open, switch to the “Database Structure” tab to see all the tables within the database. For browser history, look for tables like:
Firefox: moz_places
for website visits.
Chrome/Edge: urls
for website visits.
Browse Data: Click on the “Browse Data” tab and select the relevant table from the drop-down menu to view its contents.
Custom Queries: For more detailed analysis, you can run custom SQL queries by switching to the “Execute SQL” tab. Example query for Firefox:
This query joins the visit and URL information, converting the visit date to a readable format and ordering the results by the most recent visits.
Review the displayed data to analyze the user's browser history. Pay attention to visit dates, URLs, and, depending on the query, the frequency of visits or titles of the pages.
If needed, you can export the query results or table data by right-clicking on the results and selecting “Export” to choose your preferred format, such as CSV, for further analysis or reporting.
Document your findings and the steps taken during your analysis, including any specific queries used, for reporting and potential legal proceedings.
For more advanced queries, visit thesection.