如何将数据写入进程/内存?
好的,我正在制作一个基本的 Win32 控制台应用程序,它可以读取但更重要的是可以写入进程的内存。就像它附加到进程/.exe 上一样,
假设我有一个指针和一个偏移量,我将如何将数据写入指针/偏移量?
例如,动态地址是 00A89BCA。指针是 0x00EBCDB08,偏移量是 0xBCD7
我想向该地址写入一个整数值。
我该怎么做呢?
Okay so I'm making a basic Win32 console application that can read but more importantly write to a process's memory. Like it attaches onto a process/.exe
So say I have a pointer and an offset, how would I go about writing data to the pointer/offset?
So like for example the dynamic address is 00A89BCA. Pointer is 0x00EBCDB08 and Offset is 0xBCD7
I would like to write an integer value to this address.
How would I go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OpenProcess
->WriteProcessMemory
OpenProcess
->WriteProcessMemory