A minidump analysis tool built with blue teams in mind. Supports running Yara rules against virtual addresses and dumping virtual memory to disk.
View threads:
./warbler --file ~/Desktop/mem/RuntimeBroker.exe.dmp threads
View loaded and unloaded modules:
./warbler --file ~/Desktop/mem/RuntimeBroker.exe.dmp modules
View memory:
./warbler --file ~/Desktop/mem/RuntimeBroker.exe.dmp memory
Run yara rules against virtual address:
./warbler --file ~/Desktop/mem/RuntimeBroker.exe.dmp yara --rules /opt/yara/ --address 0x2879d9c0000
Dump to disk:
./warbler --file ~/Desktop/mem/RuntimeBroker.exe.dmp dump --address 0x2879d9c0000 --out shellcode.bin