"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)

-1
votes
0answers
11 views

Writing/keyboard hook

I am trying to make a C# program that, whenever a user types, it writes the text upside down instead. For example, I start the program and while it is running it will intercept keystrokes and instead ...
0
votes
0answers
9 views

Get rid of WM_TOUCH “Mouse” extra messages

Windows Touch API, seems to be a bit buggy. I have an application that uses the Window Subclass API (SetWindowSubclass(...)) to grab WM_TOUCH events from an application that already has a WinProc ...
0
votes
1answer
20 views

Converting integer memory address to static member function pointer

Im trying to detour a member function in a binary executable. I only know the function signature and the VA of the method. With the help of the 'method' sample, included in Detours Express 3.0, I came ...
1
vote
1answer
21 views

Object to 'hook' into jQuery function, possible?

I am currently running into the following issue, which I'd like to solve more elegantly: My script works as follows: Takes an element Puts the element into a container (defined as var container = ...
0
votes
0answers
17 views

Disabeling Touch Screen Mouse Device events Using setwindowshookex (user32.dll)

I have a WPF C# Application. I have dual screens, and I want to cancel the mouse event on one of the screens, since it is A touch screen and it takes the focus out of the main screen when ever a user ...
1
vote
1answer
21 views

git push remote: warning: hooks.mailinglist has multiple values

I have just upgraded from using gitosis to gitolite. Email notifications are working for all repos but for the gitolite-admin repo I get this waring when I push (the push is good): $ git push remote: ...
0
votes
1answer
27 views

Modify TYPO3 Frontend TypoScript from extension, using core hook

I've tryied a lot of things, and hooks for modifying the TypoScript configuration from and handmade extension. Here's the hooks I tested : tslib_fe::initFEuser() tslib_fe::checkDataSubmission() ...
0
votes
1answer
18 views

How to tell when a user is making a tag vs a commit in Mercurial

I have a hook written for Mercurial. It uses the pretxncommit to make sure that the user includes an 'issue number' in their commit message. But sometimes the user may use the 'hg tag' command instead ...
0
votes
0answers
15 views

Debug git post-receive hook on network share respository

I have a remote git repository set up on a smb share on my network. I can push to it normally and everything there seems to work fine. However, the hook post-receive does not run. Using this ...
0
votes
1answer
26 views

Get Parameter passed to the action in a CodeIgniter Hook

I' m trying to create a ACL for CodeIgniter and got stuck at one point. I cannot figure out how to get the parameter passed to method. For example the url looks like this: ...
0
votes
0answers
21 views

Global Click Event

I want to be able to click anywhere on my computer (not on the form) and I want it to play sounds. The sounds are easy but I want it to detect if the person clicks right or left click anywhere like ...
0
votes
1answer
28 views

WINAPI Hook - determine whether a new directory was created [closed]

Is there any way to create a callback that reacts after the user created a new folder in the explorer?
0
votes
0answers
31 views

Windows Unicode keyboard hook

I'm developing an application that in some point needs to capture the keyboard and mouse user input. I had no problems installing and using the mouse hook, but the keyboard is not working properly. I ...
0
votes
1answer
59 views

Prestashop module hook to product pages

I am developing a module in prestashop. The module has been hooked into left column and right column and its working fine with that. Now I want to show the module output in product footer page. So for ...
0
votes
1answer
39 views

C# How do I handle a argumentNullException when setting the clipboard?

private static IntPtr HookCallback( int nCode, IntPtr wParam, IntPtr lParam) { if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN) { int vkCode = ...
1
vote
1answer
34 views

Different view.jsp for Frontend and ControlPanel

I have hooked the ImageGallery Liferay Portlet to modify the layout of the gallery. As I'm happy with the result I wanted to add some new pictures in the control panel and than - shock! The same view ...
0
votes
1answer
83 views

Hooking Win32 exception dispatching [duplicate]

I want to hook (local) the function that finally calls an exception handler in order to get the address of the handler before it actually gets executed. Is this even possible (in usermode)? Which ...
-1
votes
1answer
19 views

Add extra fields like address, city etc on cart page shipping calculator in woocommerce [closed]

I searched for hooks for shipping calculator but didn't find any !
0
votes
1answer
31 views

Why I can't use sessions in a CodeIgniter hook

I have this code here: hooks/account.php: class Account { public function checkIfLogged() { if(!$this->session->userdata('logged') ){ ...
1
vote
0answers
51 views

How to Intercept touch input on Windows 8

I'm writing Windows 8 desktop app and would like it to pop up when user taps the screen with (for example) 4 fingers. I've found this question: How to detect tapping (touch input) globally instead of ...
0
votes
1answer
30 views

How to add a page-link/menu-item in template header navbar menu section by hooks wordpress

I want to add a menu-item/page-link in the template navbar section by hooks from a plugin file.I do not want to use any plugin for this.I want to use hook.I have tried those after googling: ...
0
votes
1answer
44 views

Undefined method error when trying to run around hooks

I am trying to run given scenarios as many times per each account type. I found out in other thread that "around hooks" could be the best option to do it the DRY way. Below is my code: require ...
0
votes
1answer
36 views

Hooking Api with Detours crashes on Detach

iam trying to hook NtQueryVolumeInformationFile with detours by injecting a .dll into the explorer.exe. It works fine until i try to eject the dll. After ejecting the .dll, the explorer.exe crashes. ...
0
votes
0answers
62 views

How can I hook backspace key correctly?

I came this convention, I want to process the backspace in special way. so I use: SetWindowsHookEx(WH_KEYBOARD,(HOOKPROC)LauncherHook, NULL, GetMainThreadId(id)); in my process. but the problem ...
0
votes
1answer
20 views

Hooking a _userpurge function c++

I want to hook a function from a x86 executeable. That's the functions prototype decompiled with the hex-rays plugin for IDA: int __userpurge sub_43CE70<eax>(int a1<eax>, int a2, char a3, ...
0
votes
0answers
107 views

DirectX Hooking - Program Crashes On Rezise/Minimize-Maximize

I'm working on modifying texture colors for games. I'm using Easyhook which is basically a glorified detours library for C#, and I am also using SlimDX which is a wrapper for direct3d for C#. ...
0
votes
0answers
30 views

Identifying low level hook keyboard C# [closed]

Is it possible through a low level hook to receive the PID and VID ? I'm using the code from this example: http://blogs.msdn.com/b/toub/archive/2006/05/03/589423.aspx I've been looking at Raw ...
0
votes
0answers
41 views

Woocommerce update cart hook

I'm writing a simple wordpress-plugin to add bulk discounts to woocommerce. All seems fine, only problem: I need a hook to modify data if the cart gets updated, for example before the checkout so if ...
0
votes
0answers
19 views

How to Access Theme' core files through plugin wordpress

Is there any way to access a theme's core files through a plugin? I meant the theme I'm creating the plugin for is "jobroller". I need to create a plugin which will access in a template of that theme ...
1
vote
1answer
32 views

Wordpress custom hook

The problem occurs with the fact that I do not know the anatomy of WordPress(it is a first time i'm working with WP), and the task should be solved urgently. I developed a plugin for openID ...
-3
votes
0answers
27 views

Where is the Woocommerce Hooks list? [closed]

I'm trying to add new fields to Woocomerce after Customer Details section in the Checkout phase and I need Woocommerce hooks in order to figure out where to place it. ...
0
votes
2answers
104 views

Determine if SHIFT is pressed insde keyboard Hook Proc

inside my hook proc, how can i determine whether a used is pressing SHIFT (without releasing it) and then a char key (like A) ? for example, if i press Shift+A, i want to know that it will be an ...
-3
votes
0answers
36 views

Hooked WriteProcessMemory and ReadProcessMemory shows address in strange format

I hooked process which uses WriteProcessMomory function and ReadProcessMomory function from kernel32.dll, however it shows strange lpBaseAddress and lpBuffer in some strange format: LPCVOID ...
0
votes
1answer
47 views

Iterate Vertex Buffer

I'm trying to emulate OpenGL's GL_POINT for debugging and Reverse-Engineering OpenGL. I'm trying to iterate the Vertex-Buffer given its pointer, the Index-Buffer pointer and the stride. So what I ...
-2
votes
1answer
30 views

How to listen new remote notifications which are displayed in the notification center? [closed]

Is there any way to get the remote notification in notification center? Which method should I hook?
0
votes
1answer
63 views

Gemfile and Bundler error in foreman when doing bundle install

I'm trying to install foreman hooks but I get There was an error in your Gemfile, and Bundler cannot continue. when running bundle install foreman version 1.1 [root@foreman foreman]# bundle update ...
0
votes
1answer
29 views

Cant get codeigniter hooks working

I have spent several hours now, trying to figure out why i can't get a simple hook working in codeigniter. I have enabled hooks in config. i tripplechecked spelling and case. I wrote the code below ...
1
vote
1answer
38 views

printing skb data crashes computer when using netfilter hook

I'm trying to print data out of skbuffs using the netfilter hook functionality. The only problem is when i run this code, my OS freezes and a have to do a forced shutdown. Im new to kernel coding so i ...
0
votes
0answers
78 views

Woocommerce - adding x number of products thru add-to-cart

has anyone been able to add multiple products of the same kind, with a click of add-to-cart button. I have enclosed a picture to show what I would like to build. Objective: To be able to add ...
0
votes
1answer
88 views

Prestashop landing page

I'm new to prestashop and was wondering how I would go about creating a landing page for my store. I can't seem to fully wrap my mind around .tpl and hooks. Any pointers would be helpful. Thanks in ...
14
votes
1answer
169 views

Is set single step trap available on win 7?

I was doing with a so called 'seh hooking'. Actually it changes permission of region of memory and catches the exception when it gets accessed, so it can hook the function. It uses the single step ...
-1
votes
0answers
29 views

How do I change DNS records without editing 'hosts' file? [closed]

I thought that a possible solution would be hooking the API responsable to make DNS requests. Is there any API used in major browsers such as Internet Explorer, Firefox, Google Chrome and Opera to ...
1
vote
1answer
79 views

How to hook a function from the same process and get the address of the caller function?

I need to do it to avoid calling a function of my process from injected code. so would like to hook this function to check whether the call is from the current module or it is from an external ...
0
votes
2answers
61 views

Detect mouse click with java while in a game

I am thinking to make a simple robot app which would record all movements and clicks done by the use and then repeat them. I can do that with a glasspane but my question is, would a GlassPane work if ...
0
votes
2answers
96 views

C# Key hooks key down event

Creating a key hook so that when the combination is pressed, the application will open again. I have looked into various ways of doing it, however I do not know what the input combination will be ...
0
votes
0answers
29 views

Setting sessions/cookies from inside hooks in vBulletin (login_failure)

I'm working on setting either a session variable or a cookie with login failure information, such as number of strikes available or what the failure was. Two questions: 1) My redirection works, but ...
0
votes
0answers
25 views

how to use ssdt hook tech to intercept the operations of creating new folders?

I hooked native api ZwCreateFile, and wdk doc says windows use ZwCreateFile to create or open a directory. I can detect the operation of opening testdir, but i failed to stop the open directory ...
0
votes
0answers
48 views

Is HHOOK process-specific in Windows?

We are using SetWindowsHookEx to hook to another process B from our process A. This function returns HHOOK which can be used by UnhookWindowsHookEx to remove the hook. If our process A which installed ...
0
votes
0answers
56 views

Hooking NtQueryDirectoryFile can't hide files

I want to hide files (in my program). I decided to use NtQueryDirectoryFile. But the files are not hidden, the code does not work. I don't use a driver, I use user mode. Can anybody help me please? ...
0
votes
2answers
41 views

adding a class to a link in a teaser using a hook

I've been looking all day, but I just can't seem to get (any) hook working, this hook in particular. I want to use hook_link_alter to add a class (colorbox) to a link on a teaser. I was able to get it ...

1 2 3 4 5 38