How can you read/write asm registers from an .exe using C++?
问题 I want to modify the value of a register that is in a certain program. The only problem is, I don't know how to access it. If there is a way, how do I read/write into it? (preferred language C++) 回答1: If you want to modify a particular register one time while the program is running you can do so using a debugger, such as OllyDbg. If you want to modify the code while the program isn't running, such that in the future when you run the program it behaves differently, you can view the Assembly