Claude Code plugin providing skills for x64dbg debugger automation.
> /plugin marketplace add dariushoule/x64dbg-skills> /plugin install x64dbg-skills@x64dbg-skills
What's inside
Claude Code plugin providing skills for x64dbg debugger automation.
/state-snapshotCaptures a full debuggee state snapshot to disk for offline analysis:
/state-diffCompares two state snapshots to identify what changed between two points in time:
/decompileDecompiles a function to C-like pseudocode using angr:
/yara-sigsScans snapshot memory dumps with YARA signatures from the x64dbg yarasigs database:
/state-snapshot โ uses an existing snapshot or takes a fresh one/tracealyzerTraces execution (into or over calls) for N steps or until a condition is met, then analyzes the recorded instruction log:
cip == 0x401000), or bothtraces/ with addresses, disassembly, labels, and comments/shellcode-analyzerLoads, unpacks, and analyzes raw shellcode blobs in x64dbg:
timeout.exe as a sacrificial process (supports 32-bit and 64-bit)/yara-sigs), annotates key addresses with comments and labels/find-oepSmart trace-based OEP finder for packed/protected PE executables:
/yara-sigs for packer identification and /state-snapshot for memory capture at OEP/vuln-hunterHunts for vulnerabilities in a running debuggee through systematic analysis:
/decompile for complex functions and /tracealyzer for execution tracingx64dbg_automate pip package installed:
pip install x64dbg_automate[mcp] --upgrade
/decompile skill: angr (Python >= 3.10):
pip install angr
/yara-sigs skill: yara-python and Git:
pip install yara-python
/vuln-hunter skill: LIEF for static PE analysis:
pip install lief
Add the marketplace and install the plugin:
/plugin marketplace add dariushoule/x64dbg-skills
/plugin install x64dbg-skills
To update to the latest version:
/plugin install x64dbg-skills
A decent guide that gives good ideas on how to use these skills: Cooking with x64dbg and MCP
MIT
.claude-plugin/
marketplace.json
plugin.json
.gitignore
CLAUDE.md
LICENSE
README.md
skills/
decompile/
decompile.py
SKILL.md
find-oep/
SKILL.md
shellcode-analyzer/
report_template.md
SKILL.md
state-diff/
SKILL.md
state_diff.py
state-snapshot/
SKILL.md
state_snapshot.py
tracealyzer/
SKILL.md
vuln-hunter/
enum_imports.py
find_xrefs.py
report_template.md
SKILL.md
yara-sigs/
SKILL.md
yara_scan.pyFAQ
x64dbg-skills is a Claude Code plugin with 8 hand-picked skills for security work, indexed on Flowy. Install it with the command on its page. It includes decompile, find-oep, shellcode-analyzer. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.