offensive-tools/rev/ltrace/SKILL.md
Auth/lab ref: Linux library-call tracer for glibc and dynamically linked userspace APIs.
npx skillsauth add aeondave/malskill ltraceInstall 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.
If strace shows what the kernel saw, ltrace shows what userland asked its libraries to do.
Use ltrace when you need to:
strcmp, fopen, memcpy, or systemstrace with a friendlier view of dynamic library behavior# Trace library calls
ltrace ./chall
# Follow children and save output
ltrace -f -o ltrace.log ./chall
# Show longer strings
ltrace -f -s 256 ./chall
ltrace -e strcmp+strncmp+memcmp ./chall
ltrace -e malloc+free+realloc ./chall
ltrace -e fopen+fread+fwrite+system ./chall
ltrace -p 1234
strings to guess a secret check, then use ltrace -e strcmp+memcmp to confirm it.strace when you need both the high-level call and the final syscall effect.No bundled scripts/, references/, or assets/.
Use the ltrace man page for expression filters, prototype handling, and timing output.
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.