Assembly visualizer for reversing

ReverseEngineerBook

Dennis Yurichev released an excellent reversing book for free, “Reverse Engineering for Beginners“. This allows readers who eager to learn reversing to do so systematically without worrying about affordability. The book is available in both English and Russian version, and full and (lite) introductory version. If you are looking for Korean version, it is also available thanks to 민병호 (translator) and Acorn Press – “실전 연습으로 완성하는 리버싱“. All challenges/exercises/problems/tasks are accessible here.

With a lot of fruitful exercises, I found it very useful with the tool, C/C++ to assembly visualizer. Literally, it visualizes the relationship between C/C++ and assembly code via an awesome HTML web interface. It takes advantage of Node.js.

Here is a simple step to install the interface.

If you have an error while starting npm due to node stuff, creating symbolic might help. Once you start your own web server, check out the port 8080 open as following. 

Now you can enjoy a beautiful illustration to map your code to assembly, by pasting your own code. You may want to check out the demo in advance. The following example shows how the function snprintf() is converted into machine-level code in a 64-bit machine.

code_comparison