Show Menu
Cheatography

Remnux Malware Analysis Cheat Sheet (DRAFT) by

Essential commands used with Remnux Linux Distribution to use for malware analysis

This is a draft cheat sheet. It is a work in progress and is not finished yet.

General inform­ation

manalyze malwar­e.exe
I mainly use this to get the compile date and time of the malware being examined

Imported & Exports Functions

manalyze --dump­=im­ports
pedump --imports
pedump --exports

Header­s/S­ections

manalyze --dump­=se­ctions malwar­e.exe
pedump --sections malwar­e.exe
pedump --pe* malwar­e.exe
--mz, --rich, and much more exist check the help

Packer

pedump --pack­er-only malwar­e.exe

Resource

pedump --reso­urces* malwar­e.exe
Use to check the resources in the malware
pedump malwar­e.exe --extract resour­ce:­0x4060* > extrac­ted­_re­source
where 0x4060 offset of resource and extrac­ted­_re­source is itself extracted from the malware.

Exports

manalyze --dump­=ex­ports malwar­e.dll
pedump --exports malwar­e.dll