How to change a value in memory space of another process

后端 未结 4 624
名媛妹妹
名媛妹妹 2021-01-31 05:31

If you could help me with this dilemma I have. Now, I know C \\ C++, I know asm, I know about dll injection, I know about virtual memory addressing, but I just can\'t figure out

4条回答
  •  抹茶落季
    2021-01-31 06:27

    I'm fairly certain those programs are pretending to be debuggers. On Windows, I would start with DebugActiveProcess() and go from there.

    Oh, and the very useful looking ReadProcessMemory() function (and WriteProcessMemory()).

提交回复
热议问题