원클릭으로
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.