Integrating our metadata extractor with EnCase
Recipe Difficulty: Medium
Python Version: 2.7 or 3.5
Operating System: Windows
The embedded metadata extracting recipes we have designed work against loose files, not with files found within a forensic image. Annoyingly, this adds an extra step in our process, requiring us to export the files of interest from the image for this type of review. We show in this recipe, how to connect our scripts to a forensic tool, EnCase, and execute them without needing to export the files from a forensic image.
Getting started
With EnCase installed, we need to create a case and add in the evidence file, as we would for any other case. This recipe demonstrates the steps required to perform this in EnCase V6, although the same techniques can be applied to later versions.
Before starting, we will also need to ensure Python 2.7 or 3.5, the script we wish to use, and the required dependencies are installed on the machine.
How to do it...
We integrate the metadata recipes...