一键导入
checksec
Use the pwntools-provided checksec CLI for authorized ELF hardening review, mitigation checks, and binary triage evidence.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use the pwntools-provided checksec CLI for authorized ELF hardening review, mitigation checks, and binary triage evidence.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use agent-browser-cli to perceive and control the supervised Chrome browser inside the sandbox, interact with pages, capture screenshots/PDFs, inspect cookies/CDP/network/console state, and troubleshoot only when needed.
Use OWASP Amass for authorized asset discovery, domain enumeration, and DNS intelligence on in-scope targets.
Use apktool for authorized Android APK resource decoding, manifest review, smali inspection, rebuild checks, and static mobile artifact triage.
Use file, 7z, unzip, tar-compatible tools, hashes, and bounded shell inspection for safe triage of provided archives and unknown files.
Use binwalk for authorized firmware, binary blob, archive, filesystem, and embedded-content triage with bounded extraction and evidence handling.
Use dig, nslookup, whois, and related local CLIs for authorized DNS, WHOIS, ASN, mail, nameserver, and ownership triage.
| name | checksec |
| description | Use the pwntools-provided checksec CLI for authorized ELF hardening review, mitigation checks, and binary triage evidence. |
Use the checksec CLI provided by the bundled pwntools installation to inspect ELF hardening and mitigation settings for provided or task-scoped binaries. This skill documents a pwntools-provided entrypoint, not a separately installed package.
Before constructing commands, run the installed help output and use it as the source of truth:
checksec --help
pwn checksec --help
file, readelf, gdb, or runtime testing when the finding matters.checksec as part of the pwntools toolchain; do not install another checksec implementation or apt package.pwntools skill only when exploit scripts, process interaction, packing, cyclic patterns, or shellcraft are needed.Inspect one ELF binary:
file ./binary
checksec --file=./binary
readelf -h ./binary
Save batch results for multiple binaries:
for bin in ./build/*; do
test -f "$bin" || continue
checksec --file="$bin" >> checksec.txt
done
Use readelf -lW ./binary when PIE, RELRO, GNU_STACK, or loader details need independent confirmation.
Report binary path, command used, architecture when known, protection status, risk-relevant observations, and output path.