/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.claudiokuenzler.com
| | broot.ca
3.3 parsecs away

Travel
| |
| | nora.codes
3.6 parsecs away

Travel
| | [AI summary] Nora Tindall presents additional exercises and advanced techniques for reverse engineering binary files using tools like Radare2, strace, and dynamic analysis, specifically through a series of solvable CrackMe programs.
| | abstractexpr.com
2.6 parsecs away

Travel
| | There is probably no debugging tool on Linux that is more valuable and versatile than strace. This tool shows us all the calls a program makes to the operating system, including the data it transmits to the operating system via these calls and the return values sent back by the OS. Therefore, it can give...
| | abstractexpr.com
14.6 parsecs away

Travel
| Tracing a program with strace generates a lot of output because of the sheer number of syscalls every program calls during its runtime. This can become overwhelming very quickly, making it hard to analyze the trace and find what you are looking for. Fortunately, strace has several features that allow you to limit which syscalls...