Shadow of a former self
Recipe Difficulty: Hard
Python Version: 2.7
Operating System: Linux
Volume shadow copies can contain data from files that are no longer present on the active system. This can give an examiner some historical information about how the system changed over time and what files used to exist on the computer. In this recipe, we will use the pvyshadow
library to enumerate and access any volume shadow copies present in the forensic image.
Getting started
This recipe requires the installation of five third-party modules to function: pytsk3
, pyewf
, pyvshadow
, unicodecsv
, and vss
. 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 unicodecsv
. All other libraries used in this script are present in Python's standard library.
Navigate to the GitHub repository and download the desired release...