Reverse Engineering
LetsDefend
What is the process that enables the source code of the programming language to work on the target system?
A) Compiling
What is the general name of the tools that help acquire the assembly code of the executable binary file?
A) Disassembler
In which memory partition are the local variables loaded when the executable files are run?
A)Stack
What is the name of the method used when adding data to the Stack data structure or removing data from the stack?
A) LIFO
What is the name of the compiling phase in which the libraries of the functions used in the program are added in the compile process of the C programming language?
A) linking
What is the missing parameter in the command below, where the source code of the C programming language is compiled as 32-bit with GCC?
A) -m32
Decompile the executable file using the ghidra tool. What is the name of the function written by the programmer in the main function?
A) calculate