Indexing internet history
Recipe Difficulty: Medium
Python Version: 2.7
Operating System: Linux
Internet history can be invaluable during an investigation. These records can give insight into a user's thought process and provide context around other user activity occurring on the system. Microsoft has been persistent in getting users to use Internet Explorer as their browser of choice. As a result, it is not uncommon to see internet history information present in index.dat
files used by Internet Explorer. In this recipe, we scour the evidence file for these index.dat
files and attempt to process them using pymsiecf
.
Getting started
This recipe requires the installation of four third-party modules to function: pytsk3
, pyewf
, pymsiecf
, and unicodecsv
. Refer to Chapter 8, Working with Forensic Evidence ContainerRecipes, for a detailed explanation on installing the pytsk3
and pyewf
modules. Likewise, refer to the Getting started section in the Parsing prefetch files recipe for details on installing...