Hook processes - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T00:30:17Zhttp://stackoverflow.com/feeds/question/299261http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/299261/hook-processes1Hook processesJazz2008-11-18T16:26:43Z2009-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#2992711Answer by Evan Teran for Hook processesEvan Teran2008-11-18T16:30:55Z2008-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#2992751Answer by divideandconquer.se for Hook processesdivideandconquer.se2008-11-18T16:32:12Z2008-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#2993601Answer by braindead for Hook processesbraindead2008-11-18T16:56:01Z2008-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#7141750Answer by Pipaman for Hook processesPipaman2009-04-03T14:31:28Z2009-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#8739821Answer by kcwu for Hook processeskcwu2009-05-17T05:51:41Z2009-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#14533700Answer by susanwan for Hook processessusanwan2009-09-21T08:12:21Z2009-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>