Skip to content

Maldump

What Maldump does

Guided SUSA tool journey

Maldump supports malware analysis. In this guide, you will use it to extract a selected suspicious process or region from a supplied training image. The procedure and screenshots provide the practical reference; the surrounding context explains what to record and how to judge the result.

Tool guide at a glance

Investigation task

Extract a selected suspicious process or region from a supplied training image.

Starting material

An inert or purpose-built training sample stored in a disposable isolated analysis VM.

Successful outcome

A static observation or capability finding with sample hash, tool output, and confidence statement.

Evidence and safety

Do not execute unknown samples on SUSA. Disable shared folders and credentials, and use only authorised training material. Record the input identifier, tool version, relevant commands or settings, time and time zone, output location, and any errors or limitations as you work.

Choose your journey

How the labs complement this guide

The Interactive Lab is a safe browser simulation for practising the workflow and validation logic. The Full Lab is an independent exercise for an isolated, authorised environment. Confirm the installed tool version and expected output before relying on either exercise in a real case.

Accessing Maldump in SUSA

Maldump makes it easy to extract quarantined files of multiple AVs from a live system or a mounted disk image.

Install PDM

PDM is a modern Python package and dependency manager supporting the latest PEP standards.

Use a disposable analysis environment

This command downloads and immediately executes an internet-hosted installation script. Run it only in an authorised, disposable build or analysis VM, never on original evidence or a production endpoint. Review the script at the official PDM project before execution, take a VM snapshot and record the installed version.

Open an administrator PowerShell prompt and run the following command:

powershell -ExecutionPolicy ByPass -c "irm https://pdm-project.org/install.ps1 | iex"

Screenshot: Open an administrator PowerShell prompt and run the following command:

Install Visual Studio Build Tools for C++

Download Visual Studio Build Tools for C++.

Screenshot: Download Visual Studio Build Tools for C++

Open the downloaded executable and click Yes to install.

Screenshot: Open the downloaded executable and click Yes to install

Click Continue.

Screenshot: Click Continue

Select Desktop development with C++ and click Install.

Screenshot: Select Desktop development with C++ and click Install

Once the installation is complete, click OK and restart Windows.

Screenshot: Once the installation is complete, click OK and restart Windows

Install Maldump

Open an administrator Command Prompt and run the following command to install Maldump:

pip install maldump

Screenshot: Open an administrator Command Prompt and run the following command to install Maldump:

Alternatively, navigate to C:\Tools and run the following commands to install Maldump:

git clone https://github.com/NUKIB/maldump
cd maldump
pdm install
pdm run python -m maldump

Screenshot: Alternatively, navigate to C:\Tools and run the following commands to install Maldump:

Testing Maldump

List quarantine files located on disk C

maldump C:\

Dump quarantine files from disk C into archive quarantine.tar

maldump C:\ --quar

Export quarantine metadata from disk C into quarantine.csv

maldump C:\ --meta

Screenshot: Export quarantine metadata from disk C into quarantine.csv

The quaraintine.csv file can be opened in Timeline Explorer and it contains quarantine metadata.

Screenshot: The quaraintine.csv file can be opened in Timeline Explorer and it contains quarantine metadata