Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
fatal_core_dump — A core dump debugging murder mystery. | Kitploit
Tools/GitHubGitHub/axlan/fatal_core_dump
Memory ForensicsExploitationReverse EngineeringDebuggersForensicsCTFLearning & EducationBinary Exploitation
GitHubaxlan/fatal_core_dump

fatal_core_dump

A core dump debugging murder mystery.

View Repository
127 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Website

Fatal Core Dump Murder Mystery

Repo for generating a core dump debugging murder mystery game site.

THIS REPO HAS SPOILERS FOR THE GAME!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

You can play it here: https://www.robopenguins.com/fatal_core_dump/

For a blog post on the design process see: https://www.robopenguins.com/core-dump-game/

The repo that hosts a VM for debugging the core dump in the browser is: https://github.com/axlan/webvm/tree/fatal_core_dump

Directory Structure

  • bin - Output directory for generated files
  • lib - Directory for internal libraries. These are not given as part of the mystery and are mostly stubs to set up the conditions for the core dump
  • minimal_example - A directory with experiments used to design the hack used in the murder
  • rpg_maker_project - RPG Maker project source and assets
  • scripts - Scripts to automate generating core dump and other evidence
  • site - The murder mystery game is presented as this static HTML site. Some files are links to rpg_maker_project assets, binary output, or are generated by scripts
  • src - The airlock controller source that the player sees while solving the mystery

Commands

Generate evidence:

root@kitploit:~
./scripts/docker_generate_site.sh

Upload site:

root@kitploit:~
./scripts/upload_site.sh

Run airlock_ctrl in debugger:

root@kitploit:~
./scripts/generate_hack.sh
# Can also use pwndbg command
gdb -x scripts/analysis.gdbinit bin/airlock_ctrl

Run proof of concept:

root@kitploit:~
make clean && make
env -i setarch $(uname -m) -R $PWD/bin/min_poc
# Check that the addresses printed match the values in vuln_test5.py
python minimal_example/vuln_test5.py
cp bin/input5_good bin/input5
env -i setarch $(uname -m) -R $PWD/bin/min_poc
Download Tool