Reversing AARCH64 C++ Binaries

2023/01/06

In the files below you can find my notes regarding reversing C++ binaries compiled for AARCH64 / ARM64. The compiler used for all of these is g++, the stripping of one of the binaries was achieved via the strip command. No options were given to g++ when compiling on an aarch64 Debian 11 system. Enjoy.

00 - Basic Classes

01 - Pure Virtual Methods I

02 - Abstract Class

03 - Template

04 - Stripped Binary

05 - Pure Virtual Methods II