用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill ropgadget命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | ropgadget |
| description | Auth/lab ref: gadget discovery utility for ELF, PE, Mach-O, and raw binaries. |
| compatibility | Linux, macOS, Windows; Python 3. |
| metadata | {"author":"AeonDave","version":"1.0"} |
Fast gadget discovery for exploit development and mitigations-aware binary triage.
Use ROPgadget when you need to:
pop, ret, pivot, syscall, or call-oriented gadgets# Basic gadget dump
ROPgadget --binary ./chall
# Common x86-64 stack-control gadgets
ROPgadget --binary ./chall --only "pop|ret"
# Try automatic chain generation when the target is simple
ROPgadget --binary ./chall --ropchain
ROPgadget --binary ./chall --only "pop|ret"
ROPgadget --binary ./chall --only "syscall|sysenter|int 0x80"
ROPgadget --binary libc.so.6 --only "mov|call|jmp"
ROPgadget --binary ./chall --depth 6
ROPgadget --binary ./chall --badbytes "00|0a|0d"
ROPgadget --binary ./chall --range 0x400000-0x401000
ROPgadget --binary ./chall --only "leave|xchg|add rsp|sub rsp|ret"
--ropchain as a convenience feature, not a proof of exploitability.one-gadget for libc post-leak options and with gdb for runtime validation.--only, --range, or smaller depth settings.No bundled scripts/, references/, or assets/.
Use the upstream README for architecture support, output formats, and advanced filters.