vote up 2 vote down star
1

Is there a way to detect which programs or modules are listening to a keyboard hook? By Sysinternals maybe?

flag

40% accept rate

3 Answers

vote up 1 vote down

This blog post has instructions: http://zairon.wordpress.com/2006/12/06/any-application-defined-hook-procedure-on-my-machine/

link|flag
vote up 0 vote down

Nope. You would likely have to hook into SetWindowsHookEx() itself in order to detect that.

link|flag
vote up 0 vote down

I don't think you can, there's no GetWindowsHook function that would return the hook(s). Also, I'm under the impression that the main keyboard processing routine is hooked through SetWindowsHookEx(), so even if there are no hooks, there's at least one, Windows itself.

link|flag
Thanks; I have guessed that would be at least one. But if there are no ways to do that; that might be a source of horror! – Kaveh Shahbazian Sep 25 at 10:18
If you're concerned about some sort of keyboard monitoring program, maybe you could try another approach - it probably is writing to a file somewhere (or transmitting over a network connection). Filemon could help you see if there's any suspicious file I/O, Wireshark could do the same with network traffic. – Marc Bernier Sep 25 at 13:21
I have McAfee security suite on my laptop and I keep it updated. Hope that helps for some automatic safety. – Kaveh Shahbazian Sep 26 at 11:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.