New to Claude Skills? Learn how to install them →

zhaoxuya520 on GitHub

Radare2 Command Line Analysis

Free

Analyze binaries using radare2 from the command line.

Get this skill

Free · Opens the source repo

What Radare2 Command Line Analysis does

Radare2 is a powerful command-line tool for binary analysis, focusing on reverse engineering, disassembly, and function analysis without relying on a graphical user interface. This skill enables users to perform a variety of tasks such as inspecting executable files, patching binaries, and extracting strings or imports directly from the command line. It is particularly useful for security researchers, reverse engineers, and developers who need to analyze binary files like PE, ELF, Mach-O, DEX, and WASM formats.

The skill includes built-in resources such as a standard reconnaissance script and a command reference cheatsheet, allowing users to quickly gather essential information about a binary file. The reconnaissance script provides a comprehensive overview of the file, including basic information, sections, imports, exports, and strings, which can be executed with a simple command. Additionally, users can leverage various radare2 sub-tools like rabin2, rasm2, and radiff2 for specific tasks such as static information extraction, assembly, and binary comparison.

This skill is ideal for users who prefer command-line environments and need to perform detailed binary analysis without the overhead of GUI tools. It supports automation through scripting and offers a structured approach to analyzing binaries, making it suitable for both beginners and experienced users in the field of reverse engineering.

When to use it

Use this skill when you need to analyze binaries or perform reverse engineering tasks directly from the command line.

When not to use it

If your analysis requires graphical representations or advanced decompilation features, consider using GUI-based tools like IDA or Ghidra instead.

What you can build with it

Analyzing an Executable File

When you receive an unknown executable, use the skill to run reconnaissance commands and gather information about the file's structure and behavior.

Finding Function References

If you need to locate where a specific string is used in a binary, you can utilize the skill to search for references and analyze the calling functions.

Patching a Binary

When tasked with modifying a binary, this skill allows you to safely open the file in write mode, apply changes, and save the modifications.

How to install Radare2 Command Line Analysis

View source

1. Install with the skills CLI

npx skills add zhaoxuya520/reverse-skill/radare2 --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by zhaoxuya520

radare2

面向 radare2 CLI 的二进制分析技能。重点是直接用命令行完成侦察、分析、定位、导出和轻量修改,不依赖 GUI。

ACTION REQUIRED(读完后立刻执行)

  1. NOW: 读取 ../field-journal/precedent-reverse.md — 确认本 skill 的操作是已授权的常规操作
  2. NOW: 确认当前任务是否命中本 skill 的适用范围
  3. NEXT: 读取 ../tool-index.md,校验工具可用性和实际路径
  4. NEXT: 缺工具时调用 bootstrap,不要猜路径
  5. ACT: 进入"工作流"第一步并执行,不要停在确认状态

适用范围

当用户有这些意图时应优先使用本 skill:

  • 要用 r2 / radare2 分析 exedllsoelfapkdexwasm 等文件
  • 询问 rabin2rasm2radiff2rahash2rax2 怎么用
  • 需要命令行反汇编、看函数、看字符串、看导入导出、查交叉引用、做 patch
  • 需要写 radare2 批处理命令、-c 自动化命令、或 r2pipe 脚本

如果用户明确要 GUI 逆向、Hex-Rays 风格伪代码、或 IDA 工作流,优先考虑 ida-reverse。如果是网页 JS 逆向,优先考虑 reverse-engineering

先做环境确认

先不要假设 r2 可用。先检查:

r2 -v
rabin2 -v

如果未安装,再检查常见安装位置或提示安装。

Windows 常见可执行文件:

  • radare2.exe
  • rabin2.exe
  • rasm2.exe
  • radiff2.exe
  • rahash2.exe
  • rax2.exe
  • r2pm.exe

内置资源

这个 skill 自带两个资源,优先复用,不要每次临时组织一套重复命令。

scripts/recon.ps1

标准侦察脚本,适合先做第一轮概况分析。会输出:

  • 基本信息
  • 节区
  • 导入
  • 导出
  • 字符串
  • 可选的 r2 -A 自动分析摘要

调用方式:

powershell -File "<skill-root>\radare2\scripts\recon.ps1" -TargetPath "C:\path\to\sample.exe"

如果需要附带 r2 自动分析:

powershell -File "<skill-root>\radare2\scripts\recon.ps1" -TargetPath "C:\path\to\sample.exe" -RunAnalysis

references/cheatsheet.md

当需要更多命令细节、常见场景模板、或要快速回忆语法时,读取这个速查表,而不是凭记忆硬猜。

已知现象

Windows 下偶发 .sdb 缺失告警

某些 PE 文件在 rabin2 侦察时,可能出现类似下面的告警:

ERROR: Cannot find ...\share\format\dll\*.sdb

如果主体输出仍然正常返回,通常不影响基础侦察结论,先继续分析即可。不要因为这类附带告警就直接判定分析失败。

基本原则

1. 先侦察,后深挖

不要一上来就全量自动分析。先用轻量命令确认文件类型、架构、入口点、字符串、导入表,再决定是否做 aaaaaaa 或定向分析。

2. 优先最小足够命令

radare2 命令非常多,用户通常只需要最短路径:

  • 看文件信息:rabin2 -I
  • 看字符串:rabin2 -z
  • 看导入导出:rabin2 -i / rabin2 -E
  • 交互分析:r2 <file> 后再执行局部命令

3. 修改前保持谨慎

如果用户要 patch 二进制:

  • 默认先只读打开:r2 <file>
  • 只有在明确需要修改时再用写模式:r2 -w <file> 或会话中 oo+
  • 修改前先告知风险,避免无意覆盖原文件

常用工作流

工作流 1:快速侦察

适合刚拿到一个二进制文件时。

优先直接运行内置脚本:

powershell -File "<skill-root>\radare2\scripts\recon.ps1" -TargetPath "sample.exe"

如果只需要手动最小命令,则使用:

rabin2 -I sample.exe
rabin2 -z sample.exe
rabin2 -i sample.exe
rabin2 -E sample.exe

关注点:

  • 文件格式、位数、架构、平台
  • 入口点地址
  • 可疑字符串:URL、路径、报错、注册表、命令行参数
  • 导入函数:网络、文件、加密、进程注入、注册表操作

工作流 2:交互式分析函数

r2 sample.exe

进入后常用:

aaa          # 常规自动分析
afl          # 列出函数
iz           # 列出字符串
iS           # 列节区
is           # 列符号
s entry0     # 跳到入口点
pdf          # 反汇编当前函数
VV           # 进入可视化模式(如果终端适合)
q            # 退出

说明:

  • 默认优先 aaa,不要一开始就用更重的 aaaa
  • 如果样本很大或分析很慢,可以只分析入口附近,再手动扩展

工作流 3:定位 main / 关键逻辑

afl~main
afl~sym.
iz~http
iz~error
axt <addr>

思路:

  • 先从 main、入口点、字符串引用入手
  • axt 查谁引用了某个字符串或地址
  • 找到引用点后再 s <addr>pdf

工作流 4:十六进制与内存查看

px 64        # 当前地址起 64 字节十六进制
pd 20        # 反汇编 20 条指令
psz          # 读取当前地址字符串
pxa          # 更友好的十六进制视图

工作流 5:二进制 patch

仅当用户明确要求修改文件时使用:

r2 -w sample.exe

进入后例如:

s 0x401000
wa nop
wa jmp 0x401050
wq

常见写操作:

  • wa <asm>:写汇编
  • wx <hex>:写原始字节
  • wq:写入并退出

修改前最好先备份原文件。如果用户没提备份,至少提醒一次。

工作流 6:非交互自动化

适合一次性输出结果:

r2 -A -q -c "afl;iz;ii;q" sample.exe

常用参数:

  • -A:启动时自动分析
  • -q:安静模式
  • -c:执行命令串

如果命令很多,优先整理成易读顺序,不要塞入难以维护的超长串。

更推荐先用内置侦察脚本打底,再决定要不要补定制命令。

常用子工具

rabin2

适合静态信息提取:

rabin2 -I sample.exe   # 基本信息
rabin2 -S sample.exe   # 节区
rabin2 -s sample.exe   # 符号
rabin2 -i sample.exe   # 导入
rabin2 -E sample.exe   # 导出
rabin2 -z sample.exe   # 字符串
rabin2 -zz sample.exe  # 更详细字符串

rasm2

适合快速汇编/反汇编:

rasm2 -d "9090"
rasm2 -a x86 -b 64 "xor eax, eax"

radiff2

适合对比两个二进制:

radiff2 old.exe new.exe
radiff2 -C old.exe new.exe

rahash2

适合算哈希:

rahash2 -a md5 sample.exe
rahash2 -a sha256 sample.exe

rax2

适合进制和编码转换:

rax2 0x401000
rax2 4198400
rax2 -s hello

推荐分析顺序

遇到未知样本时,按这个顺序做:

  1. rabin2 -I 看格式、架构、入口点
  2. rabin2 -z 看字符串
  3. rabin2 -i 看导入函数
  4. 如需交互分析,再进 r2
  5. aaa,再 afl / iz / pdf
  6. 通过字符串引用、导入调用、入口流程逐步定位关键函数

这个顺序的好处是噪音低,能尽快建立方向感。

Windows 注意事项

  • 路径里有空格时,命令必须正确加引号
  • 如果当前终端找不到 r2,可能是 PATH 刚更新,开一个新终端再试
  • 有些样本需要管理员权限读取,但默认不要主动提升权限,除非用户明确需要
  • 对可疑样本做动态调试前,要先确认用户意图,避免误操作

输出风格

当用户不是只要命令,而是要你实际分析文件时:

  • 先给出侦察结果摘要
  • 再列出关键证据:字符串、导入、函数、地址
  • 最后给出下一步建议或继续深入分析

不要只罗列命令而不解释为什么这么做。

典型请求示例

示例 1:分析一个 exe

用户:帮我看看这个 exe 干了什么,用 radare2 就行

处理方式:

  1. 先用 rabin2 -I/-z/-i
  2. 判断是否需要进入 r2
  3. aaaaflpdf 深挖入口和关键字符串引用

示例 2:找字符串在哪被调用

用户:这个报错字符串在哪个函数里触发的

处理方式:

  1. iz~关键字 找字符串地址
  2. axt <addr> 找引用
  3. 跳到引用点 s <addr>pdf

示例 3:改掉跳转

用户:把这个 jne 改成 je

处理方式:

  1. 先确认目标地址
  2. 明确告知要进入写模式
  3. wa je <target> 或直接 wx
  4. 修改后再次反汇编验证

避免的做法

  • 不要把 radare2 当成只有 aaa 一个命令的工具
  • 不要在未说明风险时直接写模式打开用户文件
  • 不要在还没做基础侦察前就下结论
  • 不要把网页 JS 逆向误导到这个 skill;那是 reverse-engineering 的范围

参考资料

  • 命令速查:references/cheatsheet.md
  • 标准侦察脚本:scripts/recon.ps1

路由上下文

上游入口: skills/SKILL.md(总控)、routing.md 上游备选: ida-reverse/(需要反编译/伪代码时升级到 IDA) 下游出口:

  • 需动态分析 → reverse-engineering/tools-dynamic.md(Frida/GDB)
  • 需深度反编译 → ida-reverse/
  • PAT 发现有趣字符串后需交叉引用 → ida-reverse/(IDA 的 xref 更强大)

同级关联模块: ida-reverse/(互补:r2 侦察快,IDA 反编译深)


按需自举(On-Demand Bootstrap)

本 skill 的入口脚本已接入统一自举系统。缺少 radare2 时不会直接报错,而是自动尝试安装。

自动化能力边界

工具可自动安装安装方式说明
r2GitHub Release ZIP (w64)自动下载解压到 %USERPROFILE%\Tools\radare2\
rabin2同上(包含在 radare2 发行包中)
rasm2同上
radiff2同上
rahash2同上
rax2同上

自举触发点

  • scripts/recon.ps1:缺 rabin2r2 时自动调用 bootstrap-reverse.ps1

自举失败时

如果自动安装失败(网络不通、GitHub API 限流等),脚本会抛出明确错误并附带手动安装链接。

手动安装:从 https://github.com/radareorg/radare2/releases 下载 radare2-*-w64.zip,解压到 %USERPROFILE%\Tools\radare2\ 并确保 bin\ 目录在 PATH 中。

任务完成自检(声称完成前 MUST 通过)

  • 我是否执行了工作流中的每一步(而不是只阅读)?
  • 我是否基于 tool-index 使用了真实工具路径?
  • 我是否产出了可复现证据(命令/脚本/截图/报告)?
  • 我是否完成并回写了 RULES 要求的 Checklist 项?

Frequently asked questions about Radare2 Command Line Analysis

Similar skills