Top "Detours" questions

This tag is about the Microsoft Detours library for intercepting arbitrary Win32 binary functions on x86, x64, and ARM machines.

C++ Function Hook (memory address only)

I have a memory address, its the memory address of a function in another program (one of its dlls). I …

c++ hook detours
How does Microsoft Detours work and how do I use it to get a stack trace?

I am new to Microsoft Detours. I have installed it to trace the system calls a process makes. I run …

windows detours
What is the recommended way to hook Win32 APIs for a commmercial application?

What is your recommendation for an API hooking library or code to be used in a commercial application? I have …

winapi api hook detours
What is the point of VirtualProtect when any process, including malware, can use it?

I understand that the VirtualProtect function changes the permissions on a page in memory without question. Surely this ends up …

c++ c memory hook detours
C++ - Detours WinSock Hooking

What I am trying to do is use the Detours library to hook into an applications WinSock2 send() and recv() …

c++ winsock recv hook detours
How to use the Detour library in C++ properly for a simple hook of a function with known memory adress?

I am having trouble to get my first hook using detour to work. I am using Detour 3.0. My code compiles …

c++ detours