7

有没有内置的 Python 中用于编辑内存的好且易于使用的模块?或者有没有这样的模块?

我正在寻找的是一种附加到进程并读取/写入它的方法。就像作弊引擎的工作原理一样。这是它在 C++ 中如何工作的示例

4

1 回答 1

9

我花了一段时间才找到这样做的方法,但这就是我想出的!

from ctypes import *
from ctypes.wintypes import *

pid = 0 #the pid of the process, aquired earlier by hand

address = 0x0000 #where to read from while in the memory

OpenProcess = windll.kernel32.OpenProcess
ReadProcessMemory = windll.kernel32.ReadProcessMemory
CloseHandle = windll.kernel32.CloseHandle


PROCESS_ALL_ACCESS = 0x1F0FFF

datadummy = b'.'*200
buffer = c_char_p(datadummy)
bufferSize = len(buffer.value)
bytesRead = c_ulong(0)

processHandle = OpenProcess(PROCESS_ALL_ACCESS, False, int(PID))

ReadProcessMemory(processHandle, address, buffer, bufferSize, byref(bytesRead))

CloseHandle(processHandle)

要写入内存,我只需添加WriteProcessMemory = windll.kernel32.WriteProcessMemory然后调用它

于 2012-12-25T13:17:28.813 回答