Detours icon indicating copy to clipboard operation
Detours copied to clipboard

Detours is a software package for monitoring and instrumenting API calls on Windows. It is distributed in source code form.

Results 114 Detours issues
Sort by recently updated
recently updated
newest added

The demo code run fine on windows x64 OS (Build as X64 target). But it will crashed on window arm64 OS (Build as X64 target). [HookTest.zip](https://github.com/user-attachments/files/21727789/HookTest.zip)

bug

Add a new interface DetourProcessViaHelperDllsEx that has an individual parameter that accepts a dll path to be loaded by rundll32.exe. But the payload data is still copied from rlpDlls. Addresses...

**Describe the bug** Currently Detours users should call DetourUpdateProcessWithDll + DetourProcessViaHelperDllsW to inject dlls into target processes. DetourUpdateProcessWithDll is called to injection dlls to the target process with the same...

bug

I'm curious why detours is compiled with optimization disabled (/Od) in the release configuration: https://github.com/microsoft/Detours/blob/9764cebcb1a75940e68fa83d6730ffaf0f669401/src/Makefile#L19

question