What problem does it solve? After fuzzing or patch diffing surfaces a crash, security researchers need a structured methodology to triage the crash, identify its root cause, and determine whether it is exploitable before investing time in exploit development. ## Core Features & Use Cases - Crash Triage Decision Tree: Selects the right debugger and workflow (WinDbg + TTD, GDB + Pwndbg, rr, CASR) based on platform, source availability, and crash type. - Sanitizer Interpretation: Guides reading of ASAN, UBSAN, and MSAN reports, including core dump capture when ASAN aborts via SIGABRT. - Exploitability Assessment: Covers register and stack trace analysis, mitigation checks, control-flow analysis, crash deduplication, minimization with afl-tmin, and PoC creation with pwntools. - Use Case: Given a fuzzer-generated segfault on a Linux binary, follow the reproduction fidelity checklist, capture a core dump, classify the crash with CASR, and assess whether attacker-controlled input reaches the vulnerable code path. ## Quick Start Analyze this crash dump from my fuzzing run and tell me the crash type, root cause, and whether it looks exploitable.