Protect the running process - searching an old artical
-
Hello! I am searching for an old artical that defines how to protect all the running processes from being modified by some other process or virus. It articulate about: for most of the time it is required that we should be alerted when something tries to alter our running processes. The source code provided was also release as an separate free downloadable product on author personal website. -- Waqar
-
Hello! I am searching for an old artical that defines how to protect all the running processes from being modified by some other process or virus. It articulate about: for most of the time it is required that we should be alerted when something tries to alter our running processes. The source code provided was also release as an separate free downloadable product on author personal website. -- Waqar
Not sure if this is what you're looking for - Tamper Aware and Self Healing Code[^]
«_Superman_» _I love work. It gives me something to do between weekends.
-
Not sure if this is what you're looking for - Tamper Aware and Self Healing Code[^]
«_Superman_» _I love work. It gives me something to do between weekends.
-
Hello! I am searching for an old artical that defines how to protect all the running processes from being modified by some other process or virus. It articulate about: for most of the time it is required that we should be alerted when something tries to alter our running processes. The source code provided was also release as an separate free downloadable product on author personal website. -- Waqar
You can find an answer to this in the Secure Coding Cookbook. There are some elegant macros that you wrap around the methods you want to watch. Even if a checkpoint is set, the checksum of the method will change. Som compilers let you set the code segments to read only. You might want to read about that as well.