reverse-engineering-workbench

reverse-engineering-workbench is a skill for Claude Code, Codex from mattmre/EVOKORE-MCP-PUBLIC. It costs 55 tokens per session (1,026 once invoked), scanned A, original, MIT.

A structured workflow for understanding unfamiliar executables, shared libraries, drivers, and firmware by examining their code and runtime behaviour.

In plain words
What is it for?
It helps plan static analysis, decompilation, debugger checks, malware triage, function renaming, and call-reference tracing.
Why use it?
It helps decide what to inspect first and keeps guesses separate from evidence when recovering how compiled software works.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps plan static analysis, decompilation, debugger checks, malware triage, function renaming, and call-reference tracing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mattmre/evokore-mcp-public/reverse-engineering-workbench
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add mattmre/EVOKORE-MCP-PUBLIC --skill reverse-engineering-workbench
Clone the repo
git clone --depth 1 https://github.com/mattmre/EVOKORE-MCP-PUBLIC

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for reverse-engineering-workbench

README.md
[![agentmods](https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/reverse-engineering-workbench/github.svg)](https://agentmods.dev/skills/mattmre/evokore-mcp-public/reverse-engineering-workbench)
Your own site
<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/reverse-engineering-workbench"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/reverse-engineering-workbench/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for reverse-engineering-workbench

Your own site · 80×15
<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/reverse-engineering-workbench"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/reverse-engineering-workbench.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,026 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00055 $0.01026
Opus 5 $0.00028 $0.00513
Sonnet 5 $0.00011 $0.00205
Haiku 4.5 $0.00006 $0.00103

Measured 9d ago against content hash 7d3236fdab69, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

reverse-engineering-workbench scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

SKILLS/DEVELOPER TOOLS/reverse-engineering-workbench/SKILL.md · 82 lines

How it starts

The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Reverse Engineering Workbench

Coordinate reverse-engineering work as a staged workflow instead of jumping straight into decompilation. Select the right tool family, define the evidence needed, and move from reconnaissance to semantic recovery to debugger confirmation.

Use When

  • Opening an unfamiliar executable, shared library, driver, or firmware blob
  • Planning how to divide work between Ghidra-style static analysis and debugger sessions
  • Building a repeatable workflow for decompilation, renaming, xref chasing, and malware triage
  • Deciding whether a task should stay in EVOKORE skills or call proxied child tools directly

Core Rule Set

  1. Start with reconnaissance before renaming or patching.
  2. Prefer static evidence first: imports, exports, strings, call graph shape, and decompiler output.
  3. Escalate to dynamic analysis only when static analysis leaves behavior ambiguous.
  4. Rename and retype only after collecting enough evidence to defend the new meaning.
  5. Keep a short findings log: target, hypothesis, supporting evidence, unresolved questions, next pivot.

EVOKORE Tool Activation Pattern

Run discover_tools first so the right child-tool families become visible for the session.

Suggested discovery prompts:

  • ghidra headless reverse engineering decompile xrefs strings imports exports
  • binary analysis debugger x64dbg windbg malware triage pe dotnet
  • reva ghidra assistant reverse engineering

Expected tool families:

  • ghidra_headless_* for structured static analysis, decompilation, xrefs, types, comments, and patching
  • binary_analysis_* for static triage, .NET work, control flow, malware heuristics, YARA, x64dbg, and WinDbg
  • reva_* for assistant-style Ghidra workflows if the ReVa child server is enabled
  1. Run reverse-engineering-company-system if the target is large, ambiguous, or likely to span multiple RE lanes.
  2. Run unknown-binary-onboarding to choose the right specialist tools and produce the first target queue.
  3. Run ghidra-core-recon to map functions, strings, imports, exports, and likely entry points.
  4. Run ghidra-function-analysis or semantic-recovery-campaign on priority routines and subsystems.
  5. Run ghidra-rename-and-retype to clean names, signatures, variables, comments, and data types.
  6. Run debugger-driven-analysis if runtime-only behavior, unpacking, crypto state, IPC, or anti-analysis logic remains unclear.
  7. Run malware-triage-workflow if the sample is suspicious, packed, or clearly malicious.
  8. Run reverse-engineering-improvement-loop after meaningful milestones so future sessions inherit the lessons instead of relearning them.

Read the full file on GitHub · 82 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 82 lines · 55 tokens per session scan A 7d3236fdab69

Subscribe to this mod's changes

reverse-engineering-workbench is a skill published in the GitHub repository mattmre/EVOKORE-MCP-PUBLIC (3 stars, last pushed 3mo ago), licensed MIT. It adds 55 tokens to every session and 1,026 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

analyzing-golang-malware-with-ghidra

Reverse engineer Go-compiled malware using Ghidra with specialized scripts for function recovery, string extraction, and type reconstruction in stripped Go binaries.

Mikaru0Mystic/sectinel · 40 tokens

analyzing-golang-malware-with-ghidra

Reverse engineer Go-compiled malware in Ghidra by parsing Go buildinfo and pclntab structures, recovering stripped/obfuscated function names (e.g. via GoResolver), and extracting embedded module/dependency strings and types from Go binaries. Use when analyzing a Go-language malware sample, deobfuscating a…

mukul975/Anthropic-Cybersecurity-Skills · 95 tokens

deobfuscating-powershell-obfuscated-malware

Systematically deobfuscate multi-layer PowerShell malware using AST analysis, dynamic tracing, and tools like PSDecode and PowerDecode to reveal hidden payloads and C2 infrastructure.

adriannoes/awesome-agentic-ai · 48 tokens

investigating-ransomware-attack-artifacts

Identify, collect, and analyze ransomware attack artifacts to determine the variant, initial access vector, encryption scope, and recovery options.

adriannoes/awesome-agentic-ai · 36 tokens

analyzing-golang-malware-with-ghidra

Reverse engineer Go-compiled malware using Ghidra with specialized scripts for function recovery, string extraction, and type reconstruction in stripped Go binaries.

plurigrid/asi · 40 tokens

ts-debug

TypeScript/Node debugging expert. Use when the user needs to debug, profile, or trace TypeScript or Node.js code — e.g. "how do I debug this", "find the memory leak", "why is this slow", "add a breakpoint", "profile this function", "why won't the process exit".

berekvolgyipeter/dotclaude · 68 tokens