> For the complete documentation index, see [llms.txt](https://wongkenny240.gitbook.io/computerforensics/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wongkenny240.gitbook.io/computerforensics/incident-response-artifacts/browser.md).

# Browser

## Browser Artifacts

* C:\Users\USERNAME\AppData\Local\Google\Chrome\User Data\Default\\
* C:\Users\USERNAME\AppData\Local\Microsoft\Edge\User Data\Default\\
* C:\Users\USERNAME\AppData\Microsoft\Windows\INetCache\IE
* C:\Users\USERNAME\AppData\Microsoft\Windows\WebCache\\

### Chrome

syncdata.sqlite3

![](/files/-MWgUWxl0drwtpsL5vAL)

Use the SQLite Database Browser to view SQLite database

![](/files/-MeYaS_cQ7mP96MsRJyI)

#### Last Visited

```
SELECT urls.id, urls.url, urls.title, urls.visit_count, urls.typed_count, urls.last_visit_time, urls.hidden, visits.visit_time, visits.from_visit, visits.transition, visits.id AS visit_id FROM urls, visits WHERE urls.id = visits.url ORDER BY visits.visit_time
```

#### Download

```
SELECT downloads.id AS id, downloads.start_time,downloads.target_path, downloads_url_chains.url, downloads.received_bytes, downloads.total_bytes FROM downloads, downloads_url_chains WHERE downloads.id = downloads_url_chains.id
```

Note: Start time is recorded when the Save As Windows is triggered

### Edge

### Firefox

## BrowsingHistoryView

* Select load history form the specified history files

![](/files/-MeYbGAuk_V5nEyoe0Z4)

* Copy the file location of the WebCacheV01.dat in Internet Explorer (Version 10.0/11.0) history files(WebCacheV01.dat) and click OK to proceed

![](/files/-MeYbJpcGxwu32G9sS81)

* Click Ok again to start loading the Web browsing history

![](/files/-MeYbMe0HaBYPiFGClQK)

* Browsing history will be shown after loading the history file

![](/files/-MeYbQHnzPn2stMDIkn2)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wongkenny240.gitbook.io/computerforensics/incident-response-artifacts/browser.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
