Skip to main content

strace-ltrace

Use strace and ltrace for authorized syscall and library-call tracing of provided binaries and processes.

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
strace-ltrace
description
Use strace and ltrace for authorized syscall and library-call tracing of provided binaries and processes.
# strace-ltrace Use `strace` and `ltrace` for syscall and library-call tracing during authorized runtime analysis. ## Help first Before constructing commands, use installed help or version output as the source of truth: ```sh strace --help ltrace --help ``` ## Usage rules - Trace only provided binaries, task-scoped test programs, or authorized processes. - Save traces to files for anything beyond a short bounded run. - Set follow-fork, string length, syscall filters, and timeout behavior deliberately. - Treat command-line arguments, environment values, file paths, and network endpoints as potentially sensitive. - Do not run untrusted samples unless execution is explicitly authorized. ## Common workflows Trace a short local run and follow child processes: ```sh strace -f -s 256 -o strace.log -- ./program arg1 ``` Focus on file, process, and network syscalls: ```sh strace -f -s 256 -e trace=file,process,network -o strace-focused.log -- ./program ``` Trace dynamic library calls when the binary is dynamically linked: ```sh ltrace -f -o ltrace.log -- ./program arg1 ``` Attach only to authorized processes: ```sh strace -p 1234 -o strace-pid.log ``` ## Output Report traced program or PID, command used, output path, notable syscalls or library calls, and any sensitive data handling.
Ver no GitHub