是否有用Python编写的用于编辑内存的优秀且易于使用的模块?或者是否有这样的模块?
我正在寻找的是一种附加到进程并从中读取/写入的方法。就像Cheat Engine的工作原理一样。 Here's a example of how it works in C++
答案 0 :(得分:7)
我花了一段时间才找到这样做的方法,但这就是我想出来的!
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
然后调用它