This tag is about the Microsoft Detours library for intercepting arbitrary Win32 binary functions on x86, x64, and ARM machines.
1
vote
1answer
21 views
Application Crashes when hooked with MS Detours and Injected with Withdll.exe
I am hooking FindNextFile() using MS Detours. I have configured the Detours library successfully and wrote a dll named "Detuors.dll" and an application named "FNFSend.exe". The following is the code:
...
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.
...
1
vote
0answers
49 views
Detour on winsock recv doesn't return anything
I injected a dll into a server because I needed to block some bad packets that the server isn't discarding.
Snippet from my code:
#pragma comment(lib, "detours.lib")
#pragma comment(lib, ...
0
votes
0answers
49 views
how can i export Detours to lua by lua jit?
I want to export Detours to lua
lua like below:
ffi = require "ffi"
ffi.cdef [[
typedef void* HWND;
typedef void* HMODULE;
HWND FindWindowA(const char* lpClassName, const char* lpWindowName);
...
1
vote
1answer
74 views
Detoured function crashes on printf
I'm made a DLL hook into an application.
Detoured a function like so:
typedef void (WINAPI *pUCPackets)(int a1, int a2, char* a3, int a4, int a5);
void WINAPI MyUCPackets(int a1, int a2, char* a3, ...
0
votes
1answer
39 views
Reading data from within a function with detours DLL hook
I was wondering if it is possible to read data from with in the function.
I know I can use detours to hook functions and change the parameters freely.
But that's all I understand with using detours.
...
-1
votes
3answers
45 views
Prevent winsock injection with MS detours [closed]
I have read a code somewhere that promises it can protect an applications Winsock functions from packet editors.
I run a game server and this is really good news for me. But is this really possible?
...
0
votes
1answer
95 views
C++ Detours 3.0 express on MVS 2012 error “identifier not found”
My compiler: Microsoft Visual Studio 2012.
My code is functional on detours 2.1 but I can't compile it with my compiler anymore (module unsafe for SAFESEH image.). I need to use an older compiler like ...
0
votes
0answers
77 views
CopyFile2 not getting detoured
I am stuck. For some reason, I need to block Copy feature of the file system on Windows 8.
Till Windows 7, ShFileOperation & CopyFile used to do trick. However, with Windows 8, as I could scan ...
0
votes
0answers
89 views
Windows DLL Backwards Compatibility
I am using MS detours 3.0 Express to create a DLL that detours a function of an application.
I have used StudPE to enter the dll API and hook it to the application.
Everything works fine except for it ...
1
vote
0answers
49 views
hooking into graphics functions using detours
I am a newbie trying to hook api functions(graphics) using MS detours.Could someone guide me through the process of doing it.I have configured VS 2012 and compiled the detours library already.
2
votes
2answers
185 views
How Delphi Interop with Detours Library?
I'm looking for Delphi samples, but I can find only the C++ sample codes.
For example, how to define the below hook in Delphi?
DETOUR_TRAMPOLINE(int WINAPI SetScrollInfoT(HWND, int, LPCSCROLLINFO, ...
0
votes
2answers
393 views
MS Detours Express 3.0 is not hooking CreateFile win32 API function properly
I am trying to hook win32 API function "CreateFile" using MS Detours, but when I test it by opening a *.doc file using MS Word, The CreateFile call for DLLs and font files and directories loaded by MS ...
0
votes
0answers
101 views
Return value for a hooked function
I've been hooking some functions in order to make a protection for my app, I'm using Detours (CDetour), I'm hooking CreateThread, my hook function must be exact as the original one.
HANDLE WINAPI ...
0
votes
1answer
158 views
Detour Identifier not found
I'm getting the error
error C3861: 'DetourTransactionBegin': identifier not found
error C3861: 'DetourUpdateThread': identifier not found
error C3861: 'DetourAttach': identifier not found
error ...
1
vote
1answer
97 views
How to override an application's single instance limit in Windows?
I am trying to override the singe instance limit of an application for which I don't have the source. I know that the app is using the good ol' trick of using CreateMutex to determine whether there is ...
1
vote
1answer
346 views
Simple packet logger with Detours 3.0 Express
My system: Microsoft Windows XP Professional 32-bit
IDE/Compiler: Microsoft Visual C++ 2010 Express Edition
Library: Detours 3.0 Express
Target: Write simple packet logger.
My code:
mydll.cpp
...
1
vote
1answer
54 views
Compiler optimization merge identical functions implementation meant to be stubs to be detoured during runtime
I have a C++ test project with a bunch of stub functions that have the same implementation. Those stubs are meant to be 'replaced' during runtime using Windows Detours. The issue is that, in release ...
0
votes
1answer
134 views
Deviarev2 Hook API: Hook into existing process winapi calls?
I want to use Deviare V2 API to intercept winapi calls from a test application. The problem is the hooks and the system calls are in the same process and for this reason the calls aren't intercepted.
...
2
votes
0answers
119 views
Prevent detouring functions. Avoid cracking
There is an application that checks for activation using DLL Check function. Check returns 1 if application is activated and 0 otherwise. I create simple application and DLL containing function ...
0
votes
2answers
233 views
MS Detours 3.0 on Win 7 x64?
I want to get into detail with win api hooking. This is a cite from the download page of MS Detours 3.0:
Detours Express 3.0 is available for immediate download under a no-fee, click-through ...
0
votes
2answers
1k views
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 am already loaded into the program via DLL injection. I already have the bass address, and the ...
0
votes
0answers
123 views
Hook the method whose parameters contain unknown object
Thanks everyone reading my question :)
I hooked a C++ member method via detours.
The method's declaration is retrieved from Symbol file (*.pdb) in IDA
LPVOID __thiscall Foo(class UnknownClass, ...
0
votes
1answer
184 views
CreateProcessWithDLLEx-Hooked process starts but can't resume
Im trying to get a basic hook going using microsoft detours. My program is able to successfully run CreateProcessWithDllEx and inject a dll. However, I cannot seem to resume the actual hooked ...
2
votes
1answer
361 views
injecting a dll is not working on windows XP
so am trying to make an injector to inject my dll that's uses Detours to hook a game client , it's simple , but there is a problem I don't know what's is wrong it works fine on Windows Vista+ but not ...
2
votes
2answers
119 views
Questions regarding detouring by modifying the virtual table
I've been practicing detours using the same approach as Microsoft Detours (replace the first five bytes with a jmp and an address). More recently I've been reading about detouring by modifying the ...
0
votes
2answers
250 views
appcrash when detouring LoadLibraryA
I detoured LoadLibraryA, in order to block the function from being called into my app. It is meant to block'dll injection'. Please refer to the well-known CDetour library if you've never seen these.
...
1
vote
0answers
112 views
Pointer to Direct3D function
I have code:
#include <windows.h>
#include <detours.h>
#include <d3d11.h>
#include <d3dx11.h>
#include <d3dcompiler.h>
#include <xnamath.h>
#include ...
1
vote
2answers
422 views
WriteFile hook doesn't catch writing to file operation
I have an app, which writes to files some text data.
What I'm trying to do is to hook the writing process.
I hooked with MS Detours, CreateFile, WriteFile and WriteFileEx functions. CreateFile ...
1
vote
2answers
475 views
Detouring a member-function via an injected DLL
Original Post:
I'm trying to detour a member-function from within my injected DLL. I've got the address of the function I'm trying to hook, but cannot figure out the proper syntax or way about ...
0
votes
0answers
169 views
Microsoft Detours Hook crashing
Here is my code
#include "main.h"
typedef int (WINAPI *SendPtr)(SOCKET s, const char* buf, int len, int flags);
int MySend(SOCKET s, const char* buf, int len, int flags);
HANDLE hnd;
DWORD ...
1
vote
0answers
353 views
Detours - Hooking a Classes Member Function - Syntax for setting function offset of target?
For non class functions - I can simply declare the offset of the function to be detoured like:
typedef int (_cdecl* SomeFunc)(char* pBuffer, int size);
SomeFunc Real_SomeFunc = ...
0
votes
3answers
257 views
Virtual functions and detouring
I've been programming with detours lately and all that comes with it. I have detoured a lot of different functions; thiscall, stdcall, cdecl, virtual functions etc. But there is one thing I haven't ...
2
votes
1answer
397 views
My trampoline won't bounce (detouring, C++, GCC)
It feels like I'm abusing Stackoverflow with all my questions, but it's a Q&A forum after all :) Anyhow, I have been using detours for a while now, but I have yet to implement one of my own (I've ...
6
votes
1answer
440 views
C++ and FULLY dynamic functions
I have a problem with detours. Detours, as you all know, can only move among 5 bytes of space (i.e a 'jmp' call and a 4 byte address). Because of this it is impossible to have the 'hook' function in a ...
0
votes
1answer
195 views
Detouring and using a _thiscall as a hook (GCC calling convention)
I've recently been working on detouring functions (only in Linux) and so far I've had great success. I was developing my own detouring class until I found this. I modernized the code a bit and ...
1
vote
1answer
158 views
Detours capture texture
There is a racing game, I need to collect telemetry and statistics. And to add an additional HUD
I compiled the Detours. And could make the hook to change the name of the application window.Like:
...
8
votes
1answer
495 views
Detouring and GCC inline assembly (Linux)
I'm programming extensions for a game which offers an API for (us) modders. This API offers a wide variety of things, but it has one limitation. The API is for the 'engine' only, which means that all ...
0
votes
0answers
241 views
wglMakeCurrent FAILS using DetourCreateProcessWithDll
I am using DetourCreateProcesswithDLL in Visual Studio 2010 and providing replacement dlls for Opengl32.dll , glu32.dll and glut32.dll while creating process for abgr.exe demo application from glut ...
0
votes
1answer
85 views
Lnk error 2019 and 1120
I am having trouble building the solution for detours. I am getting errors like:
error LNK2019: unresolved external symbol _DetourCopyInstruction@20 referenced in function _DetourAttachEx@20 and
...
1
vote
1answer
279 views
Hook statically linked “malloc” function family
I am using Detours to hook malloc/free of any target .exe without the access of its source code.
I have succeeded in hooking malloc/free which are dynamically linked from the .exe.
I'm wondering ...
0
votes
1answer
54 views
Copy contents of a routine to another location in memory
I want to copy the routine code in memory to another location. For e.g.
procedure OldShowMessage;
begin
ShowMessage('Old message..');
end;
Say i want to copy the routine to another location in ...
1
vote
2answers
330 views
Hook FindWindow
I'm trying to hook FindWindowA and FindWindowW using Detours 3.0. This two functions hooked successfully and I can see requested class and window title. But when I try to access to any word some like
...
1
vote
2answers
1k views
Having trouble with microsoft detours
I'm trying to do some basic hooking with microsoft detours and I can't get it to work. I've used essentially the code that was posted in this thread:
How can I hook Windows functions in C/C++?
but ...
0
votes
3answers
222 views
Is it possible to Hook into any time retrieving function
I need to hook any function that tries to retrieve the system time in order to generate "time independent" replays for different applications. Some events like pseudorandom number generation depend on ...
0
votes
1answer
74 views
Reducing non-determinism with Detours?
I was wondering if it is possible to use hooking (like Detours) to remove non-determinism in an arbitrary application.
We can assume single-thread applications (to ignore non-determinism caused by ...
1
vote
1answer
331 views
Why is my detoured code, crashing with a NOP
Hi this is my first question so please treat me gently.I am detouring an exe, using MS detours and Visual Studio 2005, my dll gets loaded and my hook works a treat however when I try to extend my hook ...
5
votes
2answers
368 views
Detours Hook in external process for “empty” function does not work
Im hooking functions in an external process via their function offset. That works well for the functions im hooking so far - however i have found a "debugLog(char...)" function that still exist in the ...
2
votes
4answers
336 views
Inject sleep() into a function of an external process
I know how to inject a DLL into a running process and also how to utilize functions used internally by the process e.g.
void__stdcall remoteMethod(unsigned short id)
{
typedef void (__stdcall ...
1
vote
1answer
680 views
Microsoft Detour - Hook Function with an assembler “call” instruction
The first question on this board and already a pretty long one - i'm sorry for that (and hereby thank you all for the great tips i got from this platform).
I'm trying to hook several functions (it's ...
