我尝试从我编写的进程内存中读取,我的代码是:
#include <stdio.h>
void main()
{
int x,y;
scanf("%d",&x);
scanf("%d",&y);
x = y;
scanf("%d",&y);
printf("%d",x);
scanf("%d",&y);
}
好的,我在作弊引擎中找到了地址,并成功编辑等等,我在谷歌搜索了至少 5 个小时,找到了很多代码,我的意思是看不懂。有效的代码,即使在进程关闭时也能运行 -_-' 有人可以帮助我构建一个从内存中的地址读取值的典型代码吗?