Browser Forensics
Browser Forensics
Browser Artifact
Common objects that browsers save:
Navigation history: user historyAutocomplete data: suggest based on most frequently searched keywordsBookmarks: save website URL addressExtensions and add-ons: small software module for a specific purposeCache: photos or javascript files, improve loading timeFavicon: small icons in tabsBrowser session: store browser information since user open it and until they close itForm data: data inside forms, saved by browserThumbnails: small images associated with a website
Artifact Path
Chrome
1
2
3
macOS ~/Library/Application Support/Google/Chrome/Default/
Windows %LOCALAPPDATA%\Google\Chrome\User Data\Default\
Linux ~/.config/google-chrome/Default/
| Artifact | File Name | Notes |
|---|---|---|
| History | History (SQLite) | Visited URLs, downloads, etc. |
| Cookies | Cookies (SQLite) | Session info, auth tokens |
| Cache | Cache/ directory | Cached images, scripts |
| Login Data | Login Data (SQLite) | Saved passwords (encrypted) |
| Bookmarks | Bookmarks (JSON) | User bookmarks |
| Sessions | Sessions/ | Open tabs, session states |
| Preferences | Preferences (JSON) | Settings & extensions info |
| Visited Tabs | Current Session, Last Session | Under Sessions/ folder |
Firefox
1
2
3
macOS ~/Library/Application Support/Firefox/Profiles/<profile>.default-release/
Windows %APPDATA%\Mozilla\Firefox\Profiles\<profile>.default-release\
Linux ~/.mozilla/firefox/<profile>.default-release/
| Artifact | File Name | Notes |
|---|---|---|
| History | places.sqlite (SQLite) | URLs, bookmarks |
| Downloads | downloads.sqlite (SQLite) | Older versions only |
| Cookies | cookies.sqlite (SQLite) | Session cookies, domains |
| Cache | cache2/ directory | Binary cached objects |
| Form Data | formhistory.sqlite | Form input auto-fill entries |
| Logins | logins.json (Encrypted) | Saved usernames/passwords |
| Sessions | sessionstore.jsonlz4 | Open tabs & windows |
| Add-ons | extensions.json | Installed extensions info |
Safari
macOS only.
1
~/Library/Safari/
| Artifact | File Name | Notes |
|---|---|---|
| History | History.db (SQLite) | Browsing history |
| Downloads | Downloads.plist (XML/PLIST) | Downloaded file records |
| Bookmarks | Bookmarks.plist | Saved bookmarks |
| Cookies | /Cookies/Cookies.binarycookies | Requires parsing tool |
| Tabs/Windows | LastSession.plist, Tabs.plist | Open tabs in last session |
| Top Sites | TopSites.plist | Frequently visited websites |
Tools
- DB Browser: open sqlite files
- Nirsoft: BrowsingHistoryView, ChromeCookiesView, ChromeCacheView
References
This post is licensed under CC BY 4.0 by the author.