What problem does it solve? When analyzing fileless malware, injected payloads, or memory-resident implants, there is often no sample file on disk to analyze—only observable symptoms. This Skill turns a live phenomenon into an analyzable sample by locating anomalous executable memory and the execution context that reaches it, then dumping and reconstructing the payload. ## Core Features & Use Cases - Anomalous executable memory scanning: Enumerate VAD regions (Windows), VMAs via /proc/<pid>/maps (Linux), Mach VM regions (macOS), or capability provenance (seL4) to find unbacked or tampered executable memory. - Execution context attribution: Correlate thread start addresses, current PC/RIP, and call-stack return addresses with suspicious regions, catching trampoline and SetThreadContext evasion. - Event-triggered dumping: Use Sysmon/ETW, BPF LSM, or Endpoint Security events only as triggers, with memory scanning as ground truth, then dump entire regions and rebuild header-stripped PE/ELF/Mach-O payloads. - Use Case: A server runs a memory-resident web shell with no file on disk. Use this Skill to identify the anonymous executable region, confirm a thread's stack returns into it, dump the full region at the protection-change moment, and classify the recovered code blob for analysis. ## Quick Start Analyze this host where the malware leaves no file on disk and help me locate and dump the injected in-memory payload.