vote up 1 vote down star
1

Does anyone know tools like SpyStudio to hook processes? The features I would like to have are:

  • log function calls on other processes
  • GUI
  • scriptable
  • opensource

I already looked at some tools like:

but none really fully satisfies me.

flag

71% accept rate

6 Answers

vote up 0 vote down

http://www.autodebug.com

The best api monitor tool (Auto Debug Profressional) can help you to do this. It can monitor all api calls.

link|flag
vote up 1 vote down

WinAPIOverride32

The primary usage of WinAPIOverride32 is monitoring/logging function calls of other process. It also has plug-in framework, so you could write your own hook handler. And it is open source (GPL).

link|flag
Never heard about it. Seems great. I'll try it as soon as I can! – Jazz Jul 29 at 21:15
vote up 0 vote down

You can use Deviare from the same company that've developed SpyStudio. It lets you hook COM Interfaces. SpyStudio uses this API to monitor functions. It has a database of types that lets you get/set parameter values of any type.

link|flag
vote up 1 vote down

You can look at Detours library from Microsoft Research. Its a generic API Hooking library.

link|flag
I already looked at Detours, but it lacks a GUI. – Jazz Nov 18 '08 at 17:06
vote up 1 vote down

It's not Open Source, but other than that OllyDbg might be what you are looking for. Other useful tools and information can be found on www.openrce.org.

link|flag
I already knew OllyDbg, but never really used it, and never though I could do this with. – Jazz Nov 18 '08 at 17:14
vote up 1 vote down

It likely uses the debugging API and places debug hooks at key points in the application to to trap events. You may even be able to do what you want using ollydbg.

EDIT: I just looked at the site and saw the demonstration videos and I would say that they almost certainly do this through the debugging API. They likely place breakpoints in the target at the desired function entry points. When a trap event fires, it looks like they use an RPC call to notify the user of their API and allow them to look at what happened and potentially modify some things. Sending back what to do next also in an RPC call. A nice design, but just a glorified debugger.

link|flag

Your Answer

Get an OpenID
or

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