About 50 results
Open links in new tab
  1. What is meant by the term "hook" in programming?

    Jan 21, 2009 · 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 …

  2. javascript - When hooking using Frida, certain locations are not hooked ...

    Dec 11, 2024 · First of all, I apologize for my English skills. i'm hooking a simple example through frida. However, there was a problem in progress, but my skills are not good, so I don't know what to search …

  3. Linux Kernel: System call hooking example - Stack Overflow

    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 f...

  4. How can I hook Windows functions in C/C++? - Stack Overflow

    Aug 30, 2014 · However, doing such hooking can be done easily by your own, see this article to learn how. You can find out where the specific function is called in foo.exe and just replace the assembly …

  5. What is the difference between hook and callback?

    Jun 18, 2012 · The terminology here is a bit fuzzy. In general the two attempt to achieve similar results. In general, a callback is a function (or delegate) that you register with the API to be called at the …

  6. hook - C++ hooking a dll? - Stack Overflow

    Nov 2, 2010 · the available strategies for hooking all of the functions that are used in a dll are different than the stratgies for hooking only one of the used functions. Out of process strategies are different …

  7. c# - How to hook an application? - Stack Overflow

    I'm trying to hook the creation of a windows in my C# app. static IntPtr hhook = IntPtr.Zero; static NativeMethods.HookProc hhookProc; static void Main(string[] args) { // Dummy.exe is a form...

  8. Hooking syscall by modifying sys_call_table does not work

    Jun 10, 2024 · I'm trying to do basic hooking by locating sys_call_table and modify an entry for sys_read syscall to a function in my own kernel module. I have tried kprobes I'm just interested to do it with …

  9. Syscall hooking in kernel module - Stack Overflow

    Apr 19, 2023 · I'm trying to hook an open syscall using a lkm and IOCTL in linux kernel 5.19. The code is actually working, i can see all the debug print using dmesg, but when i run a test program that …

  10. c++ - Hooking using EasyHook - Stack Overflow

    Sep 11, 2021 · I'm hooking the function CreateWindowExW using the lib EasyHook. When it returns at the line return CreateWindowExW(dwExStyle, lpClassName, lpWindowName, dwStyle, X, Y, nWidth, …