vote up 1 vote down star

What is your recommendation for an API hooking library or code to be used in a commercial application?

I have looked at Microsoft Detours which seems to be very good, but definitely is out of budget for the profit I am expecting out of my application.

Is there any library that offers compatibility across WinXP and Vista (and Windows 7 if not too much to ask!)? Is there anyone with past experience in using such a library in a commercial product?

flag
It might be helpful if you could state what API's you wanted to hook and why. – Michael Jul 6 at 17:17
Detours is an instrumentation package. Is that what you want to do, instrument your Win32 DLL's? – Robert Harvey Jul 6 at 17:32
First, I am really sorry for not responding in time, was on a long vacation. Back to the topic, I want to hook CreateProcess and file handling functions of Windows. Basically I want my app to gain control before Windows operating system could touch a file (possibly an EXE file). – Cerulean code Aug 18 at 15:27

3 Answers

vote up 1 vote down

sounds dubious :)

what are you trying to do? is patching the import table sufficient? i've used a variation of http://jpassing.wordpress.com/2008/01/06/using-import-address-table-hooking-for-testing/ for some fun side projects at home.

~jewels

link|flag
vote up 1 vote down

You could try EasyHook, it looks to be useful. Can't patch "system wide" though, you would need something like a Proxy DLL for that.

http://www.codeplex.com/easyhook

link|flag
vote up 1 vote down

You could also try NCodeHook lib (http://newgre.net/ncodehook), it is free and small.

link|flag

Your Answer

Get an OpenID
or

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