offensive-tools/rev/strace/SKILL.md
Auth/lab ref: Linux syscall tracer for observing file, process, network, memory, and signal behavior at runtime.
npx skillsauth add aeondave/malskill straceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Runtime truth serum for Linux programs: if the kernel saw it, strace can usually tell you.
Use strace when you need to:
# Trace a process and its syscalls
strace ./chall
# Follow children and save output
strace -f -o trace.log ./chall
# Show more string data
strace -f -s 256 ./chall
strace -f -e trace=file ./chall
strace -f -e trace=network,process ./chall
strace -f -e trace=openat,execve,connect ./chall
strace -p 1234
strace -f -p 1234 -e trace=file,network
strace -ff -tt -yy -o trace ./chall
-f -s 256 -o trace.log for a readable baseline that survives noisy runs.-e trace=file is excellent for loader and path debugging.-yy helps map file descriptors and socket addresses to something human-friendly.ltrace when libc-level behavior matters more than raw syscalls.strace slows programs down and can perturb timing-sensitive targets.No bundled scripts/, references/, or assets/.
Use the strace man page for class filters, decoding controls, and fault-injection features.
development
Auth/lab ref: Unicorn Engine CPU-only emulation for shellcode, decryptors, custom VM handlers, instruction tracing, memory hooks, and register-level experiments.
development
Auth/lab ref: Renode board and SoC simulation for MCU/RTOS firmware, UART/GPIO/peripheral modeling, GDB remote debugging, REPL platforms, and RESC scripts.
development
Auth/lab ref: Qiling OS-layer binary emulation for PE/ELF/Mach-O/UEFI/shellcode with rootfs, syscall/API hooks, filesystem mapping, and runtime patching.
databases
Auth/lab ref: QEMU user-mode and full-system emulation for cross-arch binaries, firmware, kernels, disks, serial consoles, networking, and GDB stubs.