Is it possible to read process memory of a 64 bit process from a 32bit app?

前端 未结 5 1069
孤独总比滥情好
孤独总比滥情好 2020-12-10 14:35

On windows 64 bit, I\'ve got a 32 bit process that reads the memory of other 32 bit processes, and I\'d like it to be able to read 64 bit processes too.

ReadProcessM

5条回答
  •  遥遥无期
    2020-12-10 15:12

    There's no way to get around this. One solution is to stop using the WOW64 emulator and write a 64 bit process. Another solution is to use IPC rather than direct memory reading.

提交回复
热议问题