99 - Sample Exam BROWSER Flashcards

1
Q

Browser Forensics - Google Chrome

Name the databases and important tables for the following artefacts…

  • Web History
  • Cookies
  • Downloads
  • Bookmarks
A
  • HISTORY: visits (visit_time), urls (url)
  • COOKIES: cookies
  • HISTORY: downloads (=> unixepoch)
  • BOOKMARKS: JSON File
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Browser Forensics - Mozilla Firefox

Name the databases and important tables for the following artefacts…

  • Web History
  • Cookies
  • Downloads
  • Bookmarks
A
  • places.sqlite: moz_places (url), moz_historyvisits(visit_date)
  • cookies.sqlite: moz_cookies
  • downloads.sqlite: moz_downloads
  • places.sqlite: moz_bookmarks (fk)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Browser Forensics - Google Chrome

What is the standard timestamp?

A

Webkit:

(visit_time/1000000) - 11644473600

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

Browser Forensics - Mozilla Firefox

What is the standard timestamp?

A

PRTime:

(visit_date/1000000, ‘unixepoch’, ‘utc’)

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

Browser Forensics - Google Chrome

Name common SQL queries for:

  1. History
  2. Cookies
  3. Downloads
  4. Bookmarks
A
  1. SELECT datetime((visits.visit_time/1000000) - 11644437600, ‘unixepoch’), urls.url
    FROM visits, urls
    WHERE visits.url = urls.id
  2. SELECT host_key, name, datetime(expires_utc/1000000 - 11644473600, ‘unixepoch’,‘utc’)
    FROM cookies
  3. SELECT datetime(start_time, ’unixepoch’, ’utc’), url, full_path, received_bytes
    FROM downloads
  4. Bookmarks are stored in a JSON File
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Browser Forensics - Mozilla Firefox

Name common SQL queries for:

  1. History
  2. Cookies
  3. Downloads
  4. Bookmarks
A
  1. SELECT datetime(visit_date/1000000, ‘unixepoch’, ‘utc’), url
    FROM moz_places, moz_historyvisits
    WHERE moz_places.id = moz_historyvisits.place_id
  2. SELECT id, name, host, expiry, datetime((creationTime/1000000),’unixepoch’)
    FROM moz_cookies
  3. SELECT name, source, target, currBytes, maxBytes, datetime(startTime/1000000,’unixepoch’,’utc’)
    FROM moz_downloads
  4. SELECT * FROM moz_bookmarks
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Browser Forensics - Google Chrome

Where are the database files located for:

  • Win
  • Mac
  • Linux
A

Win: \Users\AppData\Local\Google\Chrome\User Data\Default

Mac: /Users//Library/Application Support/Google/Chrome/Default

Linux: /home/USERNAME/.config/google-chrome/Default

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

Browser Forensics - Mozilla Firefox

Where are the database files located for:

  • Win
  • Mac
  • Linux
A

Win: \Users\AppData\Roaming\Mozilla\ Firefox\Profiles\xxxxx.default

Mac: /Users//Library/Application Support/Firefox/Profiles/xxxxx.default

Linux: /home//.mozilla/firefox/xxxxx.default

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