How can I detect the memory data changed?

后端 未结 1 1318
北海茫月
北海茫月 2021-01-22 17:40

I am studying about the windows programming, and i have some question.

I saw a security module that defends memory data. if one process is going to change other process

1条回答
  •  伪装坚强ぢ
    2021-01-22 18:03

    General answer to your question: no, there are no such API or functions.

    But there are different methods where you can achieve same result. 1. Api hooking. You can Hook functions in system (such as WriteProcessMemory) and then check if somebody trying to change something in your process. More on this here. 2. Debugging. You can use debugging breakpoints on functions or memory change.

    0 讨论(0)
提交回复
热议问题