Read process memory of a process does not return everything

At least in my opinion, if you have an LPMODULEENTRY involved, you’re probably starting in the wrong direction. I’d walk through the blocks of memory in the target process with VirtualQueryEx instead. This will give you a MEMORY_BASIC_INFORMATION about each block in that process. You can then use ReadProcessMemory and scan through the blocks to … Read more

Read Process Memory in C++

Ok: hacking online games is not considered cool; ReadProcessMemory does not return an int, nor should it have an int as a parameter where you are using them; The first parameter for ReadProcessMemory is not the “name” for a process, but a process handle. You’ll have to find the handle using EnumProcesses etc.