Log in

View Full Version : Is that possible to locate "HOME" key press event in IDA?


blueflycn
January 19th, 2013, 19:52
I have a dll that was injected into another process so you will need to press 'HOME' key to call it out. This dll was compiled with delphi 2007. I am wondering if it is possible to locate the 'HOME' key press related stuff?

disavowed
January 20th, 2013, 12:25
Search for 0x24 in the disassembly (http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx).

blueflycn
January 20th, 2013, 19:53
Quote:
[Originally Posted by disavowed;94064]Search for 0x24 in the disassembly (http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx).


It woks. I've found the 'wParam==36'. Thank you~