What problem does it solve? Reverse engineers need to quickly determine which libraries and APIs a binary links against, identify the compiler and runtime versions used, and spot suspicious imports (injection, networking, crypto, anti-debugging) without running the sample. This Skill provides a structured workflow for IAT/EAT analysis across PE, ELF, and Mach-O binaries. ## Core Features & Use Cases - Import/Export Enumeration: List imported and exported functions using objdump, readelf, otool, pefile, and rz-bin across PE, ELF, and Mach-O formats. - Library & Compiler Fingerprinting: Apply FLIRT signatures, GLIBC version strings, language markers (Go, Rust, C++, Delphi, .NET), and imphash to identify toolchains and cluster malware families. - Suspicious API Detection: Flag import patterns for process injection, network callbacks, credential theft, and anti-debugging, then hand off to decompilation or memory-dump workflows. - Use Case: Given an unknown Windows executable, extract its IAT with pefile, compute the imphash for family clustering, and flag CreateRemoteThread-style injection imports before deeper analysis. ## Quick Start Analyze the import table of sample.exe and tell me which libraries it links and whether any imports look suspicious.