Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

reverse-engineering逆向工程

Agent Skill

reverse-engineering 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

353

周安装

15

GitHub Stars

17

下载量

124
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:reverse-engineering(逆向工程)
来源仓库:https://github.com/plurigrid/asi
仓库路径:skills/reverse-engineering
安装命令:
npx skills add https://github.com/plurigrid/asi --skill reverse-engineering
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/plurigrid/asi --skill reverse-engineering

简介

用于查找、检索和筛选逆向工程相关技术资料。

  • 适合根据关键词快速定位协议解析、二进制分析或反编译工具信息。
  • 使用时需明确目标系统和分析方法。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 安装前建议确认权限范围和维护状态。
  • reverse-engineering 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Reverse Engineering Skill

Binary analysis and reverse engineering via MCP servers for Ghidra, IDA Pro, radare2, and angr.

Trigger Conditions

  • User asks to analyze binaries, disassemble code, decompile functions
  • Questions about malware analysis, vulnerability research, CTF challenges
  • Binary diffing, patch analysis, firmware extraction
  • Symbol recovery, function identification, control flow analysis

MCP Servers

1. GhidrAssistMCP (Ghidra - Free)

Repository: https://github.com/jtang613/GhidrAssistMCP Stars: High activity Transport: HTTP/SSE on port 8080

Installation:

# Download from releases page
# In Ghidra: File → Install Extensions → Add Extension
# Enable: File → Configure → Configure Plugins → GhidrAssistMCP

31 Built-in Tools:

CategoryTools
Program Analysisget_program_info, list_functions, list_data, list_strings, list_imports, list_exports, list_segments
Function Analysisget_function_info, decompile_function, disassemble_function, function_xrefs, search_functions
Navigationget_current_address, xrefs_to, xrefs_from, get_current_function
Modificationrename_function, rename_variable, set_function_prototype, set_local_variable_type, set_disassembly_comment
Advancedauto_create_struct

2. LaurieWired/GhidraMCP (Popular Alternative)

Repository: https://github.com/LaurieWired/GhidraMCP Transport: Python bridge to Ghidra

3. IDA Pro MCP Servers

mrexodia/ida-pro-mcp (Most active):

git clone https://github.com/mrexodia/ida-pro-mcp
cd ida-pro-mcp
pip install -e .

MxIris-Reverse-Engineering/ida-mcp-server (473 stars):

git clone https://github.com/MxIris-Reverse-Engineering/ida-mcp-server

fdrechsler/mcp-server-idapro:

git clone https://github.com/fdrechsler/mcp-server-idapro

4. radare2-mcp (Official)

Repository: https://github.com/radareorg/radare2-mcp Transport: stdio

# Install radare2 first
brew install radare2  # macOS
# or: apt install radare2  # Linux

git clone https://github.com/radareorg/radare2-mcp
cd radare2-mcp
pip install -e .

MCP Config:

{
  "mcpServers": {
    "radare2": {
      "command": "r2-mcp",
      "args": []
    }
  }
}

5. rand-tech/pcm (Multi-tool)

Repository: https://github.com/rand-tech/pcm MCP for reverse engineering combining multiple backends.

Workflows

Basic Binary Analysis

1. Load binary into Ghidra/IDA
2. Start MCP server
3. Query: "List all functions" → list_functions
4. Query: "Decompile main" → decompile_function
5. Query: "Find xrefs to this address" → xrefs_to

Malware Analysis Pattern

1. get_program_info → Architecture, compiler, entry point
2. list_imports → Suspicious API calls (CreateRemoteThread, VirtualAlloc)
3. list_strings → C2 URLs, encryption keys, debug strings
4. search_functions "crypt" → Find encryption routines
5. decompile_function → Understand algorithm
6. auto_create_struct → Recover data structures

Vulnerability Research

1. list_functions → Function list with sizes
2. search_functions "parse|read|copy" → Input handlers
3. decompile_function → Find buffer operations
4. xrefs_to → Trace data flow
5. set_decompiler_comment → Annotate findings

CTF Binary Exploitation

1. get_program_info → Check protections (PIE, RELRO, canary)
2. list_functions → Find win/flag functions
3. decompile_function → Understand vulnerability
4. xrefs_from → Control flow analysis
5. list_segments → Memory layout for ROP

CLI Quick Reference

radare2 Commands

r2 binary                    # Open binary
aaa                          # Analyze all
afl                          # List functions
pdf @ main                   # Disassemble function
pdc @ main                   # Decompile (r2ghidra)
axt @ addr                   # Xrefs to
axf @ addr                   # Xrefs from
iz                           # List strings
ii                           # List imports

Ghidra Headless

analyzeHeadless /tmp/project ProjectName \
  -import binary.exe \
  -postScript ExportDecompilation.java \
  -deleteProject

Resources

r2con Speaker Repositories

Key repositories from r2con 2016-2025 speakers for process tree and binary analysis:

Core radare2 Team

SpeakerHandleRepositorySpecialty
Sergi Alvarezpancakegithub.com/trufaeradare2 creator, r2pipe
Anton Kochkovxvilkagithub.com/XVilkaUEFI, radeco decompiler
Florian Märklthestr4ng3rgithub.com/thestr4ng3rCutter/Rizin founder
condretcondretgithub.com/condretESIL core, SIOL I/O
wargiowargiogithub.com/wargioGSoC mentor
maijinmaijingithub.com/maijinr2 book maintainer

ESIL & Symbolic Execution

SpeakerHandleRepositorySpecialty
Chase Kanipealkalinesecgithub.com/alkalinesecESILSolve symbolic exec
Sylvain PelissierPelissier_SN/AESIL side-channel simulation
Abel Valeroskuatergithub.com/skuaterr2wars, ESIL plugins
Gerardo Garcíakillabytenowgithub.com/killabytenowESIL limits

Frida Integration (r2frida)

SpeakerHandleRepositorySpecialty
Ole André Ravnåsoleavrgithub.com/oleavrFrida creator, NowSecure
Giovanni RoccaiGio90github.com/iGio90Dwarf debugger
Grant Douglashexploitablegithub.com/hexploitabler2frida mobile
Alex Soleras0lerN/Ar2frida Kung Fu, r2env

Malware & Security Analysis

SpeakerHandleRepositorySpecialty
Axelle Apvrillecryptaxgithub.com/cryptaxMalware, r2ai, droidlysis
Tim Blazytkomr_phrazergithub.com/mrphrazerMBA deobfuscation, msynth
Julien Voisinjvoisingithub.com/jvoisinSecurity tooling
cmatthewbrookscmatthewbrooksN/AWindows malware

Signatures & Similarity

SpeakerHandleRepositorySpecialty
Barton Rhodesbmorphismgithub.com/bmorphismr2 Zignatures (2020)
swoopsswoopsgithub.com/swoopslibc_zignatures, dr_pebber
Fernando DominguezFernandoDominggithub.com/FernandoDomingdiaphora similarity

Mobile Security (OWASP MSTG)

SpeakerHandleRepositorySpecialty
Carlos Holgueracpholgueragithub.com/cpholgueraOWASP MSTG co-author
Eduardo Novellaenovellagithub.com/enovellaNowSecure, r2frida
Francesco Tamagnimrmacetegithub.com/mrmaceteNowSecure iOS

Decompilation & Analysis

SpeakerHandleRepositorySpecialty
Ahmed Abd El Mawgoododdcodergithub.com/oddcoderRAIR (Radare In Rust)
Antide Petitxarkesgithub.com/xarkesCutter development
Arnau Gamezarnaugamezgithub.com/arnaugamezSide-channel attacks

Key Tool Repositories

# radare2 ecosystem
git clone https://github.com/radareorg/radare2      # Core framework
git clone https://github.com/radareorg/r2ghidra     # Ghidra decompiler
git clone https://github.com/radareorg/radare2-mcp  # MCP server
git clone https://github.com/radareorg/esil-rs      # ESIL in Rust

# Rizin fork (Cutter backend)
git clone https://github.com/rizinorg/rizin         # Rizin framework
git clone https://github.com/rizinorg/cutter        # GUI
git clone https://github.com/rizinorg/rz-ghidra     # Ghidra integration

# Frida ecosystem
git clone https://github.com/frida/frida-core       # Core library
git clone https://github.com/frida/frida-gum        # Instrumentation
git clone https://github.com/frida/cryptoshark      # Code tracer

# Speaker tools
git clone https://github.com/swoops/libc_zignatures # libc signatures
git clone https://github.com/swoops/dr_pebber       # Fake TEB/PEB for ESIL
git clone https://github.com/mrphrazer/msynth       # MBA simplification
git clone https://github.com/cryptax/droidlysis     # Android analysis
git clone https://github.com/iGio90/Dwarf           # Frida debugger
git clone https://github.com/condret/r2premium      # r2 premium features

Process Tree Analysis Perspectives

Each speaker brings unique analysis perspective:

SpeakerFocusProcess Tree Approach
pancakeCore r2r2 -d pid://PID attach, sandbox escape surfaces
xvilkaUEFI/radecoChromium shmem handles, decompile GPU process
condretESILEach PID as ESIL context, trace IPC parsing
Pelissier_SSide-channelTiming oracles in --time-ticks-* params
alkalinesecESILSolveSymbolic exec on sandbox constraints
iGio90r2fridafrida -U -n 'process' + r2 integration
thestr4ng3rCutterGUI attach, graph shader pipeline
cryptaxMalwarePersistence via flox-watchdog, LOLbins
bmorphismZignatureszg signature generation across renderer variants
swoopsdr_pebberFake PEB structures for Windows emulation
mr_phrazerDeobfuscationMBA expressions in obfuscated binaries

Example Session

User: Analyze this binary for buffer overflow vulnerabilities

Agent:
1. Starting GhidraMCP server...
2. Loading binary and auto-analyzing...
3. [list_functions] Found 47 functions
4. [search_functions "strcpy|sprintf|gets"] Found 3 dangerous calls:
   - sub_401234: uses strcpy with stack buffer
   - sub_401456: sprintf without bounds
5. [decompile_function "sub_401234"]

   void vuln_func(char *input) {
       char buffer[64];
       strcpy(buffer, input);  // VULNERABLE: no bounds check
       ...
   }

6. [xrefs_to "sub_401234"] Called from main+0x45
7. Vulnerability confirmed: Stack buffer overflow in sub_401234

End-of-Skill Interface

Integration with Gay.jl Colors

Assign deterministic colors to binary analysis domains:

using Gay

# Trit classification for RE tools
GHIDRA_TRIT = 0      # ZERO - foundational analysis
IDA_TRIT = 1         # PLUS - commercial/advanced
RADARE2_TRIT = -1    # MINUS - lightweight/CLI

# Color functions by complexity
function color_function(cyclomatic_complexity::Int, seed::UInt64)
    Gay.color_at(cyclomatic_complexity, seed)
end

# Color control flow graph nodes
function color_cfg_node(block_id::Int, func_seed::UInt64)
    Gay.color_at(block_id, func_seed)
end

Related Skills

  • effective-topos: radare2 integration
  • mcp-tripartite: Binary analysis trit (-1 MINUS)
  • binsec: Symbolic execution tutorials
  • gay-mcp: Deterministic coloring for CFG visualization

SDF Interleaving

This skill connects to Software Design for Flexibility (Hanson & Sussman, 2021):

Primary Chapter: 3. Variations on an Arithmetic Theme

Concepts: generic arithmetic, coercion, symbolic, numeric

GF(3) Balanced Triad

reverse-engineering (−) + SDF.Ch3 (○) + [balancer] (+) = 0

Skill Trit: -1 (MINUS - verification)

Secondary Chapters

  • Ch10: Adventure Game Example
  • Ch4: Pattern Matching
  • Ch7: Propagators

Connection Pattern

Generic arithmetic crosses type boundaries. This skill handles heterogeneous data.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.85%
按下载量换算47

Claude

30.47%
按下载量换算38

Cursor

17.55%
按下载量换算22

Gemini CLI

9.22%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills