06 - Browser Forensics Flashcards

1
Q

What are the Chrome Browser Application Folders for Windows, MacOS, Linux?

A
  • \Users\AppData\Local\Google\Chrome\User Data\Default
  • /Users//Library/Application Support/Google/Chrome/Default
  • /.config/google‐chrome/Default
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the important tables in the Chrome Browser History database?

A
  • urls: Information on all URLs visited. There is one entry per URL.
  • visits: Each visit made by the user. From these the web history is rebuilt.

=> tables need to be joined to get web history.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the SQL query to see the browser history in Google Chrome?

A

SELECT visits.visit_time,urls.url

FROM visits, urls

WHERE visits.url = urls.id;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the Chrome Browser Web History Timestamp?

A

It is recorded in Webkit Time Format = No of micro sec since 01-Jan-1601. This time needs to be converted to Unix Epoch time. Then SQlite datetime function can be used to convert it into a human readable format.

Convert to Unix Epoch Time:

SELECT (visit_time/1000000) - 11644473600 AS time FROM visits;

=> 11644473600: No of seconds between beginning of Webkit time (01-Jan-1601) and Unix Epoch Time (01-Jan-1970).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are Chrome Session Cookies?

A

Transient cookie, erased when the user closes the web browser.

SELECT * FROM Cookies WHERE persistent = 0;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the Mozilla Firefox files of interest?

A

places.sqlite: Used to rebuild history

cookies.sqlite: The cookie store

downloads.sqlite: Downloaded file location

formhistory.sqlite: Form autocomplete information

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Howto Mozilla Firefox Rebuild Web History?

A

To rebuild the web history in Mozilla Firefox we need to use the places.sqlite database with two tables: moz_places and moz_historyvisits.

SELECT datetime(visit_date/1000000, ‘unixepoch’, ‘utc’), url

FROM moz_places, moz_historyvisits

WHERE moz_places.id = moz_historyvisits.place_id;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the Mozilla Firefox Date Stamps?

A

They are in PRTime format - No of microseconds since 1970.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Where are Mozilla Firefox Bookmarks stored?

A

stored in database places.sqlite in the table moz_bookmarks.

SQL: SELECT * FROM moz_bookmarks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly