October 2018
Beginner to intermediate
436 pages
9h 36m
English
Now let's do some dynamic analysis. Remember that dynamic analysis should be done in a sandbox environment. There are a few tools that are usually pre-installed in Linux that can be used to display more detailed information. We're introducing ltrace, strace, and gdb for this reversing activity.
Here's how ltrace is used:

The output of ltrace shows a readable code of what the program did. ltrace logged library functions that the program called and received. It called puts to display a message. It also received an exit status of 13 when the program terminated.
The address 0x804840b is also the address of the main function listed ...
Read now
Unlock full access