52ky 发表于 2021-6-1 17:03:10

A_IDA使用初探

6085*-*A.IDA使用初探(逆向)
我是看视频结合我自己的情况写的,一是当做个笔记,二是方便他人。
IDA Pro v5.2
为了准备逆向用的实例,先用VC写一个简单的控制台应用程序
代码如下:
#include <windows.h>
void main()
{
    MessageBox(NULL,"hello world",NULL, MB_OK);
    ExitProcess(0);
}

编译产生一个helloworld.exe。
打开ida5.2,在显示的封面图片之后就可以进入ida界面了。


(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.)


页: [1]
查看完整版本: A_IDA使用初探