Hook processes

前端 未结 5 1189
庸人自扰
庸人自扰 2020-12-08 18:11

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

  • log function calls on other processes
  • GUI
  • scr
5条回答
  •  忘掉有多难
    2020-12-08 18:38

    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.

提交回复
热议问题