Strace basics
| by jpic | linux security strace
This is the first of a series of articles on security and exploiting. For starters we’ll cover basic debugging tools before we get into actual exploiting because the first step to exploiting is reverse-engineering most of the time.
The series targets experienced developers and tries to go straight to the point for them. Every article in this series is tagged “security”.
Introduction strace is a tool that prints system calls like open, connect, etc … and signals like INT, KILL, etc … of a process.
Read More