Bad Memories -v0.9- -recreation- Apr 2026

strings core.dump | grep -i ctf Returns:

Also found references to malloc , free , heap , and flag.txt . Since only the core dump was given (no original binary), we need to recreate the binary or at least its memory layout. Bad Memories -v0.9- -recreation-

gdb -c core.dump (gdb) dump memory recovered.bin 0x400000 0x401000 # typical .text section But better: use volatility (if full memory dump) or memdump from /proc/pid/maps style. strings core

strings core.dump | head -20 Noticed a binary name: ./bad_memories_v0.9 and a suspicious string: [!] You found a secret? Try -recreation- . Bad Memories -v0.9- -recreation-

Check if that note was freed: