Tagged Questions

"Hook" is a broad programming term that usually refers to replacing default behavior with a custom behavior or injecting a listener into a stream of activity.

learn more… | top users | synonyms (2)

30
votes
4answers
4k views

how do aim bots in fps games work?

I was curious if anyone had any experience/knowledge about aim bots in online FPS games such as Counter-Strike. I am curious and would like to learn more about how the cursor knows how to lock on to ...
26
votes
6answers
3k views

How to get the word under the cursor in Windows?

I want to create a application which gets the word under the cursor (not only for text fields), but I can't find how to do that. Using OCR is pretty hard. The only thing I've seen working is the ...
24
votes
22answers
6k views

Share common / useful SVN pre-commit hooks

What are some common and/or useful pre-commit hooks for SVN?
21
votes
6answers
11k views

git push email notification

How do I configure the appropriate git hook to send a summary email whenever a set of changes is pushed to the upstream repository?
16
votes
2answers
770 views

Anyone get mach_inject working on snow leopard?

Project is now on github and here is the link to my issue I successfully compiled the whole thing and able to run rejector and rejectee separately. But the injector will crash the injectee when ...
16
votes
2answers
3k views

Git commit hooks - global settings

I've written a Git post-commit hook and it works correctly. However, I want to add this hook to apply to all current (and future) git repositories I am working on. I tried adding the hook to my ...
16
votes
3answers
7k views

Linux Kernel: System call hooking example

I'm trying to write some simple test code as a demonstration of hooking the system call table. "sys_call_table" is no longer exported in 2.6, so I'm just grabbing the address from the System.map ...
14
votes
3answers
2k views

Useful Mercurial Hooks

What are some useful Mercurial hooks that you have come across? A few example hooks are located in the Mercurial book: acl bugzilla notify check for whitespace I personally don't find these very ...
14
votes
5answers
2k views

How can I hook into Perl's print?

Here's a scenario. You have a large amount of legacy scripts, all using a common library. Said scripts use the 'print' statement for diagnostic output. No changes are allowed to the scripts - they ...
13
votes
7answers
3k views

Best strategy to write hooks for subversion in Windows

What is the best approach to write hooks for Subversion in Windows? As far as I know, only executable files can be used. So what is the best choice? Plain batch files (very limited but perhaps OK ...
12
votes
8answers
3k views

What is meant by the term “hook” in programming?

I recently heard the term "hook" while talking to some people about a program I was writing. I'm unsure exactly what this term implies although I inferred from the conversation that a hook is a type ...
11
votes
2answers
954 views

What does WPF use to capture mouse and keyboard input?

I globally (system-wide) filter certain mouse clicks using SetWindowsHookEx and WH_MOUSE_LL. The problem is it doesn't work for WPF applications (all WPF applications detect mouse clicks whether or ...
11
votes
2answers
789 views

How Can I Hook a Youtube Video (Flash Player?) To Slow Down Playback?

The only good software I know which can decelerate and accelerate the playback of a YouTube video in any browser without first downloading it (because that would be cumbersome), is Enounce MySpeed. ...
10
votes
8answers
10k views

How can I hook Windows functions in C/C++?

If I have a function foo() that windows has implemented in kernel32.dll and it always returns true, can I have my program: "bar.exe" hook/detour that Windows function and make it return false for all ...
10
votes
3answers
3k views

Is there a Subversion Checkout Hook or something similar?

I'm using a subversion repository and I want to know whenever somebody asks my repository for a checkout; like a 'svn co' or an 'svn up'. Is there a hook or some other method that I can use so that a ...
9
votes
1answer
333 views

How can I create a window (HWND) without using CreateWindow(Ex)?

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 ...
9
votes
2answers
3k views

git-clone and post-checkout hook

According to the manual, the post-checkout hook is run after a git checkout (just as expected) but also after a git clone (unless you pass --no-checkout). Very well, now, considering the following: ...
9
votes
2answers
6k views

Hooking DirectX EndScene from an injected DLL

I want to detour EndScene from an arbitrary DirectX 9 application to create a small overlay. As an example, you could take the frame counter overlay of FRAPS, which is shown in games when activated. ...
8
votes
2answers
614 views

Adding console.log to every function automatically

Is there a way to make any function output a console.log statement when it's called by registering a global hook somewhere (that is, without modifying the actual function itself) or via some other ...
8
votes
2answers
106 views

.NET events - blocking subscribers from subscribing on an event

Let's say I have a "Processor" interface exposing an event - OnProcess. Usually the implementors do the processing. Thus I can safely subscribe on this event and be sure it will be fired. But one ...
8
votes
2answers
2k views

Hooks for git-svn

Can I set hooks for "pull"/"push"ing from/to a git-svn managed repository? The situation is that I have a project host on Google Code, and use git to manage the local working copy. I want to set some ...
8
votes
4answers
16k views

Using SVN post-commit hook to update only files that have been commited

I am using an SVN repository for my web development work. I have a development site set up which holds a checkout of the repository. I have set up an SVN post-commit hook so that whenever a commit ...
7
votes
3answers
661 views

Can anyone explain how/why to use jQuery's CSS hooks?

I have been looking into jQuery's css hooks, and some that are available on Github. I have been able to use them to set some styles with jQuery, but as far I understand it, it only gives me an overly ...
7
votes
2answers
195 views

Login hook on Google Appengine

Every time a user logs in to the application, I want to perform a certain task, say, record the time of login. So I wanted to know if a hook is fired on login by default? If yes, how can I make my ...
7
votes
1answer
4k views

How to specify which SSH key to use within git for git push in order to have gitorious as a mirror?

I have a project hosted on git.debian.org (alioth) and I'd like to configure a post-receive hook to update a mirror of the repository on http://gitorious.org I suppose I'll have to use git push ...
7
votes
2answers
1k views

Listening to another window resize events in C#

I am implementing a small application (observer) that needs to "attach" itself to the bottom of another window (observed). The latter is not a window inside the application. At this moment I solved ...
7
votes
3answers
2k views

How can I prevent Subversion commits without comments?

Does anybody know how to prevent commits to a Subversion code repository when there is no commit comment entered?
7
votes
5answers
3k views

Javascript function hooks

EDIT: OK, I believe the following solutions are valid: Use the jQuery AOP plugin. It basically wraps the old function together with the hook into a function sandwich and reassigns it to the old ...
6
votes
2answers
95 views

Is there a hook for when anonymous classes are assigned to a constant?

I've been practicing some Ruby meta-programming recently, and was wondering about assigning anonymous classes to constants. In Ruby, it is possible to create an anonymous class as follows: ...
6
votes
8answers
368 views

What is a “hook” and how can I write one in Java? And how to communicate with kernel to know the keys pressed by the user/registering with OS

Although I searched a lot, it is still unclear to me as to what exactly a "hook" is. For instance, I read this post on wiki answers : A hook is a method of interposing a piece of code in front of ...
6
votes
0answers
127 views

CLR profiler: issue in using DefineAssemblyRef

Hello, I want to write a CLR profiler to hook our application function with GetILFunctionBody/SetILFunctionBody. I want to use DefineAssemblyRef to import our c# dll (for use in IL code) in this ...
6
votes
3answers
693 views

Linux X11 - Global Keyboard Hook

Is it possible (or how) to create a mechanism (in Linux X11, C++) that works like a global hook in windows (SetWindowsHookEx())? I would like to be able to catch the key event but with the ...
6
votes
2answers
220 views

On Windows, how can I install the lowest level global keyboard hook possible?

I'm working on a custom arcade launcher in python on Windows. I want to choose system and game, then launch the emulator - and require a certain key combination to kill the emulator. All of my key ...
6
votes
2answers
377 views

Not able to detect branch from Git post-receive hook

I've got a post receive hook setup on the remote repo that tries to determine the branch name of the incoming push as follows: $branch = `git rev-parse --abbrev-ref HEAD` What i'm finding, though, ...
6
votes
1answer
725 views

Is there any git hook for pull?

I need to perform some actions (prepare gettext *.mo message files) on my project everytime I run git pull. Is there any suitable git hook, which I could use for this purpose please?
6
votes
4answers
822 views

In Git, how can I write the current commit hash to a file in the same commit

I'm trying to do a fancy stuff here with Git hooks, but I don't really know how to do it (or if it's possible). What I need to do is: in every commit I want to take its hash and then update a file in ...
6
votes
2answers
210 views

continuously execute an emacs lisp function

Is there a way to trigger the execution of an emacs lisp function other than M-x myfun? I would like to have the function re-called every time the buffer is changed. Background: I have a table of ...
6
votes
1answer
240 views

How do I prompt the user from within a commit-msg hook?

I want to warn the user if their commit message doesn't follow a certain set of guidelines, and then give them the option to edit their commit message, ignore the warning, or cancel the commit. The ...
6
votes
2answers
1k views

What user runs the git hook?

I have a post-update hook on my server, such that when I git push it does a pull on the live web directory. However, while the push always succeeds, the post-update hook sometimes fails. The hook ...
6
votes
4answers
669 views

Messing with the stack in assembly and c++

I want to do the following: I have a function that is not mine (it really doesn't matter here but just to say that I don't have control over it) and that I want to patch so that it calls a function ...
6
votes
3answers
3k views

Git pre-commit hook : changed/added files

I am writing a pre-commit hook. I want to run php -l against all files with .php extension. However I am stuck. I need to obtain a list of new/changed files that are staged. deleted files should be ...
6
votes
2answers
1k views

Finding a 3rd party QWidget with injected code & QWidget::find(hwnd)

Hey, I have a Qt Dll wich I inject into a third-party Application using windows detours library: if(!DetourCreateProcessWithDll( Path, NULL, NULL, NULL, TRUE, ...
6
votes
8answers
2k views

What do I have to do to make my WH_SHELL or WH_CBT hook procedure receive events from other processes?

I'm trying to use SetWindowsHookEx to set up a WH_SHELL hook to get notified of system-wide HSHELL_WINDOWCREATED and HSHELL_WINDOWDESTROYED events. I pass 0 for the final dwThreadId argument which, ...
6
votes
6answers
10k views

How do I implement the Post Commit Hook with Trac & SVN in a Windows Environment?

I'm running in a windows environment with Trac / SVN and I want commits to the repository to integrate to Trac and close the bugs that were noted in the SVN Comment. I know there's some post commit ...
6
votes
9answers
4k views

how could I intercept linux sys calls?

Besides the LD_PRELOAD trick , and Linux Kernel Modules that replace a certain syscall with one provided by you , is there any possibility to intercept a syscall ( open for example ) , so that it ...
5
votes
3answers
170 views

What to stage after a pre-commit hook was run?

For a pre-commit hook that modifies the staged files, I need to figure out what has to be staged after the hook was run. The pre-commit hook applies some pretty-printing on the files that should be ...
5
votes
2answers
104 views

Hooking C++ Methods on OSX?

I am injecting a dylib in some application for some desired behavior. I am able to hook flat C APIs properly. Once I inject the dylib, I look out in symbol table and update its entry with my ...
5
votes
1answer
119 views

Javascript losing context when hooking recursively

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 time ...
5
votes
5answers
332 views

C# still hooked to an event after unhooking

I am currently debugging a big (very big!) C# application that contains memory leaks. It mainly uses Winforms for the GUI, though a couple of controls are made in WPF and hosted with an ElementHost. ...
5
votes
2answers
495 views

Call a function from C# .exe with unmanaged C++ .dll

So, I have an executable file that was made with C#, I don't have its source code but I have disassembled it with IDA, and it gave me a lot of object oriented assembly. I've made an .exe file that ...

1 2 3 4 5 22