Calling a function through its address in memory in c / c++
On modern operating systems, each process has its own address space and addresses are only valid within a process. If you want to execute code in some other process, you either have to inject a shared library or attach your program as a debugger. Once you are in the other program’s address space, this code … Read more