I\'m starting to work on a dynamic analysis tool for JS and I\'d like to profile an entire environment unobtrusively. I\'m basically traversing various contexts, digging deep into objects, and every t
I’m trying to create a hook that blocks pushes to a remote repository if you are trying to push more than once branch.
I need to track all files accessed (created, opened, read) by a user and log these actions for further processing within a separate application. I have investigated and searched for possible ways to a
May I ask something about hooki开发者_开发知识库ng method in COM Distach Interface? Recently, I am making some utility which is kind of COM monitoring tool.
I want to know what are the files opened/access by a process. May i know how to do that? I tried to use Deviare, a free hooking api to help me, but was unable to find any useful information from their
I\'m trying to override the getDescriptiveName() method in com.liferay.portal.model.Group I found a wrapper (com.liferay.portal.model.GroupWrapper), so I tried to write a hook as written in the docum
I need to hijack all operating system calls of my own process. I cannot rewrite code as it is partly not my code (plug-ins). I need to be able to decide within my implementation of a specific system c
I am developing an application, that uses EasyHook library to inject code to desired process and intercept calls from a specific dll. In my case
I\'m using a proxy DLL to intercept calls to CreateWindowExA/CreateWindowExW. This works quit nicely, except that some applications (most notably some Visual Basic 6 applications) seem to be able to c
I am using GIT on my server and I am trying to get a PHP file to be executed each time I update my repo开发者_如何转开发sitory. I\'m trying to use my post-update hook to achieve this.