简体   繁体   中英

Windows: Read another process' memory directly

I need to scan another process' memory in Windows. The ReadProcessMemory function does it just fine but it copies each time memory from the target process to one of my buffers.. is there any way to access another process' memory without copying it to my process' memory every time? If there were I could use pointers to access the other process' memory

Debuggers use ReadProcessMemory , so if you're implementing something that functions like a debugger, that's the right way to do it.

If you're implementing something else, you're probably heading into the weeds and you should give us a higher-level view of the problem you're trying to solve.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM