View Single Post
  #3  
Old 01-08-2005, 00:39
ArC ArC is offline
VIP
 
Join Date: Jan 2003
Location: NTOSKRNL.EXE
Posts: 172
Rept. Given: 0
Rept. Rcvd 1 Time in 1 Post
Thanks Given: 5
Thanks Rcvd at 17 Times in 12 Posts
ArC Reputation: 1
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...
Reply With Quote