Quote:
|
Originally Posted by killy
hi
Is it possible to implementing hotkey function in exe itself by asm code injection ,so pressing on the key does some code injection in memory. i have only some idea like get the main loop->create some asm function to detect specific keys->if key pressed do some editing in memory  Is there any api to look for?
regards
|
Just wondering why you want to inject this code directly into the executable?
What about creating an (external) app which checks for a particular key being pressed and if it is it writes sth into the process you want to hack (via WriteProcessMemory). I believe this is better than writing it directly into the exe...