Post 11 - Memory Trouble

11 Dec 2022

Task 16, Day 11, Memory Forensics Not all gifts are nice

Note: Two days later I realized I forgot to rename this and the next posts in the front-end. Fitting for a memory-centric task.

Memory forensics is analysis of volatile memory. Interesting analogy:

Volatility

Open-source memory forensics toolkit written in python. Analyzes memory dumps from Windows, Linux, and MacOS devices. Allows:

Once Volatility and requirements (Python) are installed run with python3 vol.py. Requires options like name and location of dump, and action to perform. Common options and examples:

Types of actions:

Usage

First, confirm OS of the device memory capture came from. This determines plugins used.

Start with imageinfo plugin. python3 vol.py -f workstation.vmem windows.info

Windows plugins for this task:

The Task

Find a binary and info about it.

Found all the details, but might need to watch the walkthrough to see if there are other details I should be learning, or applications I should be making.