The missing link
Recipe Difficulty: Medium
Python Version: 2.7
Operating System: Linux
Shortcut files, also known as link files, are common across operating system platforms. They enable the user to use one file to reference another, located elsewhere on the system. On the Windows platform, these link files also record historical access to the files they reference. Generally, the creation time of a link file represents the first access time of a file with that name, and the modification time represents the most recent access time of the file with that name. Using this, we can extrapolate a window of activity and learn about how, and where, these files were accessed.
Getting started
This recipe requires the installation of three third-party modules to function: pytsk3
, pyewf
, and pylnk
. Refer to Chapter 8, Working with Forensic Evidence ContainerRecipes for a detailed explanation of installing the pytsk3
and pyewf
modules. All other libraries used in this script are present in Python's standard...