(A. Preliminary study on IDA (reverse)
I watch the video combined with my own situation, one is as a note, the other is convenient for others.
IDA Pro v5.2
In order to prepare the reverse example, first write a simple console application with VC
The code is as follows:
#include <windows.h>
void main()
{
MessageBox(NULL,"hello world",NULL, MB_ OK);
ExitProcess(0);
}
The compilation produces a HelloWorld. Exe.
Open IDA 5.2, you can enter IDA interface after displaying the cover image.)