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 SeaOf0/dsh-redteam-model --skill x64dbg-reversinggit clone --depth 1 https://github.com/SeaOf0/dsh-redteam-modelWrote 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/seaof0/dsh-redteam-model/x64dbg-reversing)<a href="https://agentmods.dev/skills/seaof0/dsh-redteam-model/x64dbg-reversing"><img src="https://agentmods.dev/badge/skills/seaof0/dsh-redteam-model/x64dbg-reversing/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/seaof0/dsh-redteam-model/x64dbg-reversing"><img src="https://agentmods.dev/badge/skills/seaof0/dsh-redteam-model/x64dbg-reversing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00144 | $0.04649 |
| Opus 5 | $0.00072 | $0.02325 |
| Sonnet 5 | $0.00029 | $0.00930 |
| Haiku 4.5 | $0.00014 | $0.00465 |
Grade A, and why
x64dbg-reversing scanned grade A with 1 finding 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 11d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl http://127.0.0.1:27042/api/health How it starts
The opening of the file, as written. The whole thing — 653 lines — stays where its author put it; the contents beside it link to each section on GitHub.
X64dbg Reversing Skill
This skill enables AI-powered dynamic reverse engineering through the X64dbg MCP server. It provides comprehensive guidance for debugging, memory analysis, breakpoint management, and binary patching.
Prerequisites
- x64dbg or x32dbg installed (download from qq:212717393)
- x64dbg MCP plugin installed (x64dbg_mcp.dp64/x32dbg_mcp.dp32)
- Node.js >= 18 for the MCP server
- MCP server running (x64dbg-mcp-server via npx)
Architecture
MCP Client (Claude) --> TypeScript MCP Server --> C++ Plugin (in x64dbg) --> x64dbg Engine
(stdio) (localhost:27042) (REST API)
Available Tools
1. Debugger Control
x64dbg_debug - Control execution flow
| Action | Description |
|---|---|
run |
Resume execution |
pause |
Pause debugger |
force_pause |
Force pause immediately |
step_into |
Step into function calls |
step_over |
Step over function calls |
step_out |
Step out of current function |
stop_debug |
Stop debugging session |
restart_debug |
Restart debuggee |
run_to_address |
Run until specified address |
state |
Get current debugger state |
2. Register Operations
x64dbg_registers - Read/write CPU registers
| Action | Description |
|---|---|
get_all |
Get all general purpose registers |
get_specific |
Get specific register(s) |
get_flags |
Get CPU flags (ZF, CF, OF, etc.) |
get_avx512 |
Get AVX-512 registers |
set |
Set register value |
3. Memory Operations
x64dbg_memory - Memory read/write/manage
| Action | Description |
|---|---|
read |
Read memory at address |
write |
Write data to memory |
info |
Get memory region info |
is_valid |
Check if address is valid |
is_code |
Check if address is code |
allocate |
Allocate new memory |
free |
Free allocated memory |
protect |
Change memory protection |
map |
Map file into memory |
4. Stack Analysis
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.
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.
- 11d ago First seen · 653 lines · 144 tokens per session scan A 7dc2c2c8eade
x64dbg-reversing is a skill published in the GitHub repository SeaOf0/dsh-redteam-model (377 stars, last pushed yesterday), licensed MIT. It adds 144 tokens to every session and 4,649 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
analyze-type-infer
A compiler analysis step that infers a symbol's type from its assignments. A type describes what kind of value something holds, such as a number, text, or Boolean value.
check-name-real
A name checker that verifies every required symbol has been declared. A symbol is a named program entity such as a variable or function.
compiler-0355bffb
A virtual-machine debugging skill for executing one instruction at a time. A virtual machine is a program that runs a compact instruction format instead of native machine code.
compiler-2dbea54a
A cycle-detection skill that checks a directed graph for loops using depth-first search, a method that follows each path before backtracking.
compiler-2f8c8f39
A call-graph skill that maps which functions call which other functions. A call graph is a network whose nodes are functions and whose links represent calls.
compiler-39fb5926
A debugger breakpoint handler for registering, clearing, and checking pause points in a program.