Are you looking for something like this?
http://www.styopkin.com/ke
Main Topics
Browse All TopicsHello,
I need to know how can I find all keyboard hooks instaled on a computer and running.
I work on an application that should scan all running processes and find which one of them (or more) has a keyboard hook installed on Windows. It should be something like a keylogger detector.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Are you looking for something like this?
http://www.styopkin.com/ke
This is a daunting question, as some HOOKs that wish to remain hidden can be hidden...
this site explains what i mean... http://www.rootkit.com/new
Other wise ciuly's suggestion seems to be the best root for keyloggers that can be identified by file/name
in the end a keylogger that wants to stay will stay until such time a proper and versitile anti-program is made.
Peace Scay7
P.S Never run a program that you are not 101% of its validity... (this is the first line of defence)
Business Accounts
Answer for Membership
by: ciulyPosted on 2006-06-02 at 12:57:56ID: 16819768
that will be a hard thing to do considering the multiple ways one can do a keyboard hook (not talking about stealth and other hiding tehniques).
maybe the best way would be to:
- find all modules used by one process (dll's, ocx, etc)
- scan the image of that module (the file) for calls to api hooks (by name and reference/address - for the latter you'll need to search either in the loaded module (in memory) or do an 'executable parser)
this will be a pretty hard task and as far as I know, the success rate will still be under 90-95%.
I'll give it a thought and get back to you if I get a better idea.