Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 561 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 561 Bytes

BlobRunner

BlobRunner is a simple tool to quickly debug shellcode extracted during malware analysis.
BlobRunner allocates memory for the target file and jumps to the base (or offset) of the allocated memory. This allows an analyst to quickly debug into extracted artifacts with minimal overhead and effort.

BlobRunner Sample

Original tool is from OALabs: BlobRunner. This is just a Linux fork.

Building

gcc -o blobrunner_x64 blobrunner.c gcc -m32 -o blobrunner_x86 blobrunner.c