找回密码
 立即注册
IDAthe逆向初探 | 其他 2021-06-01 631 0star收藏 版权: . 保留作者信息 . 禁止商业使用 . 禁止修改作品
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.)

1622538180565.rar


上一篇:Windows Internals: Including Windows Server 2008 and Windows Vista, 5th Edition
下一篇:B_IDA调试功能_了解栈