用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/buzzer-re/Rikugan --skill driver-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Patch binary code in Binary Ninja using natural language — read, assemble, write, verify
Patch binary code in IDA Pro using natural language — read, assemble, write, verify
Systematic binary deobfuscation — string decryption, control flow flattening (CFF) removal, opaque predicate elimination, mixed boolean-arithmetic (MBA) simplification, bogus control flow, instruction substitution reversal, dead code removal, and anti-disassembly fixes. Trigger: deobfuscate, unobfuscate, deobfuscation, CFF, flatten, opaque predicate, MBA, obfuscated, OLLVM, Tigress, VMProtect, string decryption, junk code, bogus control flow, instruction substitution, anti-disassembly
基于 SOC 职业分类
正在显示 SKILL.md
| name | Driver Analysis |
| description | Windows kernel driver analysis — DriverEntry, dispatch table, IOCTL handlers, vulnerability audit |
| tags | ["driver","kernel","windows","ioctl","vulnerability"] |
Task: Windows Kernel Driver Analysis. You are analyzing a kernel-mode driver binary.
NTSTATUS DriverEntry(DRIVER_OBJECT*, UNICODE_STRING*)decompile_function on the entry pointUse create_struct and set_type early — these appear in virtually every driver:
Apply types with set_function_prototype and apply_type_to_variable to make decompiled code readable immediately.
For each IRP_MJ_DEVICE_CONTROL handler:
decompile_function on the dispatch functionDispatchDeviceControl, HandleIoctlReadPhysMem, etc.