security-dwarf-expert
Installation
SKILL.md
DWARF Debug Information Analysis
When to Use
- Extracting type information, struct layouts, and function signatures from debug symbols
- Analyzing binary layout and memory organization for vulnerability research
- Recovering source-level abstractions from compiled binaries
- Understanding compiler-generated code structure
- Mapping binary addresses back to source locations
- Parsing
.debug_info,.debug_line,.debug_framesections
When NOT to Use
- Source code analysis (use static analysis tools instead)
- Stripped binaries without debug info (use decompilers like Ghidra/IDA)
- Windows PDB files (different format)