What problem does it solve? Stripped Go and Rust binaries lose function names and type information, making standard disassembly output nearly unreadable. This Skill provides a language-specific workflow to recognize Go/Rust runtime artifacts, recover symbols and metadata, and reach business logic faster instead of getting lost in runtime library code. ## Core Features & Use Cases - Go Metadata Recovery: Identify go.buildid, pclntab, and runtime symbol remnants, then restore function names with GoReSym, redress, or IDA/Ghidra Go plugins. - Rust Analysis Workflow: Drive analysis from panic strings, rust_begin_unwind, and crate path hints while handling generics code bloat and tokio async state machines. - Dynamic Analysis Support: Combine static recovery with Frida instrumentation and string-driven breakpoints for logging and configuration discovery. - Use Case: Given a stripped Go malware sample, use this Skill to confirm the compiler runtime, recover function names via GoReSym, and pivot into network and crypto library call sites for behavior analysis. ## Quick Start Analyze this stripped Go binary by recovering its symbols with GoReSym and mapping its network and crypto function calls.