Deep-Dive · · 7 min

Fantastic Symbols and Where to Find Them - Part 2

Important This is a blog post series. If you haven’t read Part 1 we recommend you to do so first! In the first blog post, we learned about the fantastic symbols (debug symbols), how the symbolization process works and lastly, how to find the symbolic names of addresses in a compiled binary. ...

January 27, 2022 · 7 min · 1298 words · Kemal Akkoyun
Deep-Dive · · 8 min

Fantastic Symbols and Where to Find Them - Part 1

Symbolization is a technique that allows you to translate machine memory addresses to human-readable symbol information (symbols). Why do we need to read what programs do anyways? We usually do not need to translate everything to a human-readable format when things run smoothly. But when things go south, we need to understand what is going on under the hood. Symbolization is needed by introspection tools like debuggers, profilers and core dumps or any other program that needs to trace the execution of another program. While a target program is executing on a machine, these types of programs capture the stack traces of the program that is being executed. ...

January 13, 2022 · 8 min · 1703 words · Kemal Akkoyun