免责声明:内容仅供学习参考,请合法利用知识,禁止进行违法犯罪活动!
本次游戏没法给
内容参考于:微尘网络安全
工具下载:
上一个内容:16.x86游戏实战-汇编指令push pop pushad popad
到这就把逆向中常用的汇编指令写完了,接下来写一个c++程序,然后通过OD调试这个C++程序
使用OD附加程序,如果先运行程序不能附加,那就把exe文件拖到OD里通过这样的方式来附加
c++代码
#include <iostream>
#include "Windows.h"
int add(int a, int b) {
return a + b;
}
int main()
{
MessageBoxA(0,0,0,0);
int a = add(4, 6);
printf("%d", a);
}