Hook processes - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:30:17Z http://stackoverflow.com/feeds/question/299261 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/299261/hook-processes 1 Hook processes Jazz 2008-11-18T16:26:43Z 2009-09-21T08:12:21Z <p>Does anyone know tools like <a href="http://www.nektra.com/products/spystudio/" rel="nofollow">SpyStudio</a> to hook processes? The features I would like to have are:</p> <ul> <li>log function calls on other processes</li> <li>GUI</li> <li>scriptable</li> <li>opensource</li> </ul> <p>I already looked at some tools like:</p> <ul> <li><a href="http://www.nektra.com/products/spystudio/" rel="nofollow">SpyStudio</a></li> <li><a href="http://research.microsoft.com/sn/detours/" rel="nofollow">Detours</a></li> <li><a href="http://www.dyninst.org/" rel="nofollow">DynInst</a></li> </ul> <p>but none really fully satisfies me.</p> http://stackoverflow.com/questions/299261/hook-processes/299271#299271 1 Answer by Evan Teran for Hook processes Evan Teran 2008-11-18T16:30:55Z 2008-11-18T16:36:29Z <p>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 <a href="http://www.ollydbg.de/" rel="nofollow">ollydbg</a>.</p> <p>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.</p> http://stackoverflow.com/questions/299261/hook-processes/299275#299275 1 Answer by divideandconquer.se for Hook processes divideandconquer.se 2008-11-18T16:32:12Z 2008-11-18T16:32:12Z <p>It's not Open Source, but other than that <a href="http://www.ollydbg.de/" rel="nofollow">OllyDbg</a> might be what you are looking for. Other useful tools and information can be found on <a href="http://www.openrce.org/" rel="nofollow">www.openrce.org</a>.</p> http://stackoverflow.com/questions/299261/hook-processes/299360#299360 1 Answer by braindead for Hook processes braindead 2008-11-18T16:56:01Z 2008-11-18T16:56:01Z <p>You can look at Detours library from Microsoft Research. Its a generic API Hooking library.</p> http://stackoverflow.com/questions/299261/hook-processes/714175#714175 0 Answer by Pipaman for Hook processes Pipaman 2009-04-03T14:31:28Z 2009-04-03T14:31:28Z <p>You can use <a href="http://www.nektra.com/products/deviare/" rel="nofollow">Deviare</a> from the same company that've developed SpyStudio. It lets you hook COM Interfaces. <a href="http://www.nektra.com/products/spystudio/" rel="nofollow">SpyStudio</a> uses this API to monitor functions. It has a database of types that lets you get/set parameter values of any type.</p> http://stackoverflow.com/questions/299261/hook-processes/873982#873982 1 Answer by kcwu for Hook processes kcwu 2009-05-17T05:51:41Z 2009-05-17T05:51:41Z <p><a href="http://jacquelin.potier.free.fr/winapioverride32/" rel="nofollow">WinAPIOverride32</a></p> <p>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).</p> http://stackoverflow.com/questions/299261/hook-processes/1453370#1453370 0 Answer by susanwan for Hook processes susanwan 2009-09-21T08:12:21Z 2009-09-21T08:12:21Z <p><a href="http://www.autodebug.com" rel="nofollow">http://www.autodebug.com</a></p> <p>The best api monitor tool (Auto Debug Profressional) can help you to do this. It can monitor all api calls.</p>