What problem does it solve? Reading live process memory is error-prone: dumps taken before unpacking capture only the packer's initial state, direct /proc/pid/mem reads fail without proper addressing, and decrypted data vanishes moments after it appears. This Skill provides a dump-first workflow for reliably capturing and extracting memory artifacts. ## Core Features & Use Cases - Dump-first memory capture: Uses gcore/gdb as the default path, with /proc/pid/mem direct reads reserved for special cases (process must stay running, tiny target regions), plus procdump/DumpIt coverage on Windows. - Targeted extraction: Scans dumps for DEX magic bytes, PEM private key headers, PNG signatures, and key/secret strings using grep, strings, and Python. - Core dump analysis: Replays ELF cores in gdb, eu-stack, and Ghidra for stack traces, registers, and post-mortem analysis. - Use Case: After a packed sample reaches its OEP, dump the process with gcore, then grep the core for 'dex\n035' to carve the decrypted DEX payload for further analysis. ## Quick Start Dump the memory of the running suspicious process and extract any embedded keys or DEX files from the dump.