"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.
0
votes
0answers
13 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
21 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
20 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
27 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
26 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
36 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
36 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
29 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
76 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 ...
-5
votes
0answers
69 views
How Do I intercept a key command when my program doesn't have focus? [closed]
I am using c# to try to intercept when the "C" key is pressed and want my program to work when it is not in context, or focus.
Here is my WPF C# code:
public MainWindow()
{
...
-1
votes
1answer
17 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
29 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
48 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
26 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
42 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
61 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
99 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
24 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
36 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
17 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
103 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
34 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
29 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
56 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
27 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
35 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
71 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
78 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 ...
0
votes
0answers
25 views
How to hook a function for a particular shared ELF library used in another program?
I try to implement the technique from:
How to hook a function for a particular shared ELF library?
on an Android device.
I would like to know, if the changes on the ELF-partition of a ...
14
votes
1answer
165 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
26 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
76 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
58 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
89 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
24 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
23 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
45 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
51 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
vote
2answers
93 views
get all controls by FindWindowEx
I am building an applicaton, It will get all control have into application winform is running. First, I can inject dll into application winform is running and get handle of application winform is ...
0
votes
0answers
11 views
Drupal 7 hook_tokens extra arguments
I am implementing some custom tokens in a custom module.
Mt token replacement is database powered but in order to retrieve the correct information from the DB, I need to supply 3 arguments in my ...
0
votes
1answer
55 views
Is there a possibility to prevent files from deleting in specified directory?
I have following situation: I am monitoring a folder with the FileSystemWatcher class from .NET (C#). With this class i get to know if a file was deleted but i want the following behaviour: Prevent ...
1
vote
1answer
37 views
why I can't hook a ie
I want to trace all the mouse and keyboard action in IE.
So I write a hook,
but I found that the hook can't work.
when I hook the IE, and make any action on IE, the IE crashed.
the step is as ...
1
vote
0answers
37 views
Redirect from mobile Tumblr profile in Safari to Tumblr app
Tumblr is awful in the way it directs links. If you click on a profile link it will not open the profile in Tumblr, but use the built in browser to display a mobile version of it. So it doesn't know I ...
1
vote
1answer
27 views
WindowsFromDc return null
I need some help about the win32 api and especially WindowsFromDc.
I have a application which hook a another application. This two application communicate by a NamedPipe. In the second application, ...


