Skip to main content

checksec

Use the pwntools-provided checksec CLI for authorized ELF hardening review, mitigation checks, and binary triage evidence.

Ir para a instalação

Informações da origem

Repositório
Aethena-Lab/Z3r0
Última atividade na origem
3 de setembro de 2026 às 10:00
Idioma detectado do SKILL.md
inglês
Estrelas
891
Forks
193

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
name
checksec
description
Use the pwntools-provided checksec CLI for authorized ELF hardening review, mitigation checks, and binary triage evidence.
# checksec 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. ## Help first Before constructing commands, run the installed help output and use it as the source of truth: ```sh checksec --help pwn checksec --help ``` ## Usage rules - Work only on provided binaries or build outputs in scope. - Treat mitigation output as triage evidence, not proof of exploitability. - Pair results with `file`, `readelf`, `gdb`, or runtime testing when the finding matters. - Treat `checksec` as part of the `pwntools` toolchain; do not install another checksec implementation or apt package. - Use this skill for mitigation triage; use the `pwntools` skill only when exploit scripts, process interaction, packing, cyclic patterns, or shellcraft are needed. - Save batch output to files and report paths instead of streaming large tables. ## Common workflows Inspect one ELF binary: ```sh file ./binary checksec --file=./binary readelf -h ./binary ``` Save batch results for multiple binaries: ```sh 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. ## Output Report binary path, command used, architecture when known, protection status, risk-relevant observations, and output path.
Ver no GitHub