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.
npx skills add mattmre/EVOKORE-MCP-PUBLIC --skill ghidra-core-recongit clone --depth 1 https://github.com/mattmre/EVOKORE-MCP-PUBLICWrote 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.
[](https://agentmods.dev/skills/mattmre/evokore-mcp-public/ghidra-core-recon)<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/ghidra-core-recon"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/ghidra-core-recon/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.
<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/ghidra-core-recon"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/ghidra-core-recon.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00047 | $0.00585 |
| Opus 5 | $0.00023 | $0.00293 |
| Sonnet 5 | $0.00009 | $0.00117 |
| Haiku 4.5 | $0.00005 | $0.00059 |
Grade A, and why
ghidra-core-recon 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 12d 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.
What it actually says
Ghidra Core Recon
Run a structured first pass that answers: what is this binary, what are the obvious hot spots, and where should deeper analysis begin?
Workflow
- Activate the relevant tools with
discover_toolsusing a query likeghidra reverse engineering functions strings imports exports. - Open or select the target program/project.
- Collect the following baseline inventory:
- function list
- imports and exports
- strings
- namespaces/classes if present
- entry points and suspicious external references
- Cluster findings into likely subsystems:
- loader / startup
- networking / crypto
- UI / CLI
- persistence / filesystem
- anti-analysis / protection
- Promote only the highest-value functions into the next phase.
Tool Families to Prefer
ghidra_headless_function.listghidra_headless_external.imports.listghidra_headless_external.exports.listghidra_headless_search.textghidra_headless_symbol.listghidra_headless_reference.toandghidra_headless_reference.from
If the active child server exposes GhidraMCP-style names instead, use the equivalent live tools:
- list functions / methods
- list imports / exports
- list strings
- get xrefs to / from
Recon Questions
- Which imports reveal the platform surface or runtime stack?
- Which strings indicate protocols, file formats, paths, registry keys, mutexes, or command channels?
- Which functions are large, highly connected, or referenced by many call sites?
- Which exports define the public interface?
- Which entry paths appear responsible for unpacking, initialization, configuration, or dispatch?
Deliverable Format
Produce a compact recon brief with:
- Binary purpose hypothesis
- Top 10 functions to inspect next
- High-signal strings
- High-signal imports/exports
- Three likely pivots for deeper semantic recovery
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.
- 12d ago First seen · 72 lines · 47 tokens per session scan A ffaccb134ed8
ghidra-core-recon is a skill published in the GitHub repository mattmre/EVOKORE-MCP-PUBLIC (3 stars, last pushed 3mo ago), licensed MIT. It adds 47 tokens to every session and 585 once invoked, about $0.0002 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.
Other skills, from other repositories
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".
py-debug
Python debugging expert. Use when the user needs to debug, profile, or trace Python code — e.g. "how do I debug this", "find the memory leak", "why is this slow", "add a breakpoint", "profile this function".
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.
ctf-rev
Solve CTF reverse engineering challenges using systematic analysis to find flags, keys, or passwords. Use for crackmes, binary bombs, key validators, obfuscated code, algorithm recovery, or any challenge requiring program comprehension to extract hidden information.
deep-analysis
Performs focused, depth-first investigation of specific reverse engineering questions through iterative analysis and database improvement. Answers questions like "What does this function do?", "Does this use crypto?", "What's the C2 address?", "Fix types in this function". Makes incremental improvements (renaming…
pyghidra-scripting
Write and run Python (PyGhidra) code inside the Ghidra session that ReVa's MCP server is already attached to, using the five ReVa scripting tools — run-script, list-scripts, read-script, write-script, edit-script. Use this whenever the user asks to execute Python against the current program, reach for the Ghidra Flat…