Tagged Questions

Detours is a library for intercepting arbitrary Win32 binary functions on x86, x64, and ARM machines.

learn more… | top users | synonyms

1
vote
2answers
359 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
2answers
816 views

How to hook __usercall, __userpurge (__spoils) functions?

Know anybody something about hooking __usercall type of functions? I hooking successfully __thiscall, __stdcall and __cdecl calls but this is enough for me. Know anybody hooking library for ...
8
votes
4answers
1k views

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 the following commands which I got from the web syelogd.exe /q C:\Users\xxx\Desktop\log.txt ...
7
votes
1answer
166 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 ...
6
votes
1answer
156 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 ...
1
vote
2answers
351 views

Detours alternative for Registry interception

I'm looking for a way to intercept and redirect reads to a certain registry keys. Naturally, Detours can do it. But I need it for a commercial application and MS $10K license fee is a bit too steep. ...
0
votes
0answers
42 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 ...
4
votes
1answer
536 views

Need to call original function from detoured function

I'm using Detours to hook into an executable's message function, but I need to run my own code and then call the original code. From what I've seen in the Detours docs, it definitely sounds like that ...
3
votes
2answers
1k views

C++ — Detours (Win32 API Hijacking) — Hijack Class Methods

I had no problems hijacking function with Detours for a long time... When I tried to hijack class methods (in my case IHTMLDocument2::write from mshtml.dll) I encountered endless problems (mainly type ...
2
votes
2answers
1k views

c++ d3d hooking - COM vtable

Trying to make a Fraps type program. See comment for where it fails. #include "precompiled.h" typedef IDirect3D9* (STDMETHODCALLTYPE* Direct3DCreate9_t)(UINT SDKVersion); Direct3DCreate9_t ...
2
votes
1answer
223 views

Is it possible to override a Java implementation of the Random class?

Using Windows Detours in C++, I've seen that it is possible to trampoline function calls so that you may intercept windows base functionality and return custom resultsets, without modifying the ...
1
vote
3answers
900 views

What does DetourAttach(&(PVOID &)BindKeyT, BindKeyD); mean? Attaching a detour to a memory address

This is just a simple question. I've been reading the source of something which attaches to a memory address of a subroutine using DetourAttach(&(PVOID &)BindKeyT, BindKeyD); where BindKeyT is ...
0
votes
1answer
22 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 ...
0
votes
1answer
282 views

How to hook/convert __userpurge func to __stdcall or __cdecl?

Know anybody something about hooking __userpurge type of functions? I hooking successfully __thiscall, __stdcall, __cdecl, __usercall. How to hook this type of functions using translation to ...
0
votes
2answers
255 views

C++ receive functions

I am hooking a few functions from my server(C++). I want to hook certain functions, to be able to dump the packets, some clients send(connect/disconnect packages). I already hooked the functions ...
0
votes
1answer
150 views

C++ Missing type specifier: syntax error

I hook a function with windows detours in C++. I get an error in following code: void (*asmFunction)(const char *text); void hookFunction(const char *text) { __asm nop; asmFunction(text); } ...
0
votes
1answer
446 views

Hooking usercall function?

I need somebody who knows more about __usercall type of functions than I do. I have a virtual machine, which on VM_Create passes the address of a function (systemCalls) to the VirtualMachine. So I ...
0
votes
1answer
1k views

Using detours for hooking writing text in notepad

I'm trying to use detours to hook text output for example in notepad. I wrote the following code. I will not put here all code, but the most significant parts. DLL part: DLLEXPORT LRESULT CALLBACK ...