Tagged Questions
The detours tag has no wiki summary.
7
votes
4answers
979 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
...
5
votes
2answers
155 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 ...
4
votes
2answers
799 views
Hooking GetTickCount with C++
I'm not great at C++, more of a C# and PHP guy. I've been assigned a project that requires me to use GetTickCount and hooking into an application. I need some help as for some reason it's not working ...
4
votes
1answer
426 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
3answers
365 views
C++/Windows API - Unable to find CreateWindow
Here's the start of my program in Visual C++ 2010 Express:
#pragma comment(lib, "detoured.lib")
#pragma comment(lib, "detours.lib")
#include <Windows.h>
#include <detours.h>
HWND ...
3
votes
1answer
242 views
C - Calling functions from external process without exported functions
Hey guys, I am trying to figure out how I can call a function without having it being exported.
Okay so I have an exe file with "add" defined in it, This exe is a win32 console application and loads ...
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
5answers
155 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 ...
2
votes
1answer
636 views
how to create a trampoline function using DetourAttachEx? (with MS detours)
I have a dll and i wish to create a detour to one of its exported functions,
The dll is not part of windows.
I need to be able to call the real function after my detour (call the real function from ...
2
votes
4answers
252 views
Can I redirect .NET method calls to a new method at runtime?
Suppose I have the following .NET classes:
public class C
{
public void M()
{
....
}
}
and
public class D
{
public void N()
{
....
}
}
These 2 classes ...
2
votes
1answer
585 views
Microsoft Detours - DetourUpdateThread?
I have a few quick questions about the Microsoft Detours Library. I have used it before (successfully), but I just had a thought about this function:
LONG DetourUpdateThread(HANDLE hThread);
I read ...
2
votes
1answer
205 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 ...
2
votes
2answers
6k views
C++ - Detours WinSock Hooking
What I am trying to do is use the Detours library to hook into an applications WinSock2 send() and recv() functions (a packet logger).
While it does work for the send() function, it does not, ...
1
vote
2answers
62 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
1answer
117 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 ...
1
vote
1answer
269 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 ...
1
vote
1answer
319 views
c++ function hook(dll, asm)
I program a dll. In this dll, I want to hook another dll's function loaded into memory. This is the result of many hours of work:
typedef int (__fastcall *def_cry)(int a,int b,int fromlen);
def_cry ...
1
vote
1answer
381 views
C++ function hook inside source code of DLL
I have the source code from a C++ DLL. This DLL is part of an applicaton. I want to hook a function loaded in memory by another DLL, so that my hooked function gets called by all other DLL's instead ...
1
vote
1answer
89 views
MS Detours 2.1 - Popping out of stack
I wont to detour PlaySoundW function inside Minesweeper.
Game is crashing as soon as it calls PlaySoundW function.
If I uncomment Beep inside my code, game beeps and than crashes.
Now code is calling ...
1
vote
1answer
188 views
Where is my memory going?
We have been using Vmmap, and Processexplorer and MS Detours to analyze the memory usage in our program.
Our goal was to validate our program's memory usage.
For example, we know that we have X MB of ...
1
vote
2answers
241 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. ...
1
vote
2answers
424 views
Unmanaged function hooking, stack/register problem with calling convention?
This is not a particular function about EasyHook but about hooking in general. I want to hook a function with this signature:
public: int __thiscall Connection_t::Send(unsigned int,unsigned int,void ...
1
vote
3answers
747 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 ...
1
vote
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 ...
1
vote
1answer
53 views
Tracking HDC from injected process
I'm facing quite a dilemma. I've injected my DLL into other process as well as hooked few
WinAPI calls from there, ExtTextOutW@GDI32, DrawTextExW@GDI32 and AlphaBlend@Msimg32 to be specific. Now, the ...
1
vote
1answer
136 views
Detour to get a Global Pointer?
I need to get the protocol version of an application, and I don't know too much about the inner workings of detouring. I usually use a detour class written by a friend of mine (Not windows detour, as ...
1
vote
3answers
1k views
Detouring DrawText
I've downloaded and compiled the Microsoft detouring library. Inside my project I've included the header file and added the .lib file as a dependency. Everything compiles without errors. Now I've been ...
1
vote
4answers
904 views
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 looked at Microsoft Detours which seems to be very good, but definitely is out of budget ...
1
vote
1answer
326 views
Where inside injected DLL to loop?
So I've got an application that starts another application with my DLL injected (with Detours). The entry point is DllMain. I can't do much from DllMain, and certainly cannot loop. So how do I call my ...
0
votes
1answer
112 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
0answers
33 views
Cant click & move window created by hooked CreateWindowExA call
I have a legacy app that creates a fullscreen window with CreateWindowExA and within uses direct7x directdraw to create 3d scenes etc.
I successfully hooked CreateWindowExA to not create the initial ...
0
votes
3answers
55 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
41 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 ...
0
votes
0answers
70 views
Platform independent socket calls Hooking (like detours ld_preload soln but using QT)
I want to write platform independent socket calls hooking (like in windows, winsock hooking using detours; using LD_PRELOAD for linux).
As Qt is a great tool for writing platform independent code ( ...
0
votes
1answer
161 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
195 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
121 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
191 views
MS Detours 2.1 - Unresolved externals
I'm using MS Detours 2.1 Library and VS 2010. I'm trying to detour PlaySoundW function.
I can't compile that code and I'm getting these errors:
Error 2 error LNK1120: 1 unresolved externals ...
0
votes
3answers
180 views
is it possible to inject multiple Dlls with MS detours?
In c++ ,I want to hook more than one dll to a process. Right now I use CreateProcesswithdll() which can hook only one api at a time. What can I do to inject multiple dlls?
I came across this problem ...
0
votes
1answer
342 views
EasyHook problem with original function call
I am developing an application, that uses EasyHook library to inject code to desired process and intercept calls from a specific dll. In my case
the library is Oracle Call Interface, OCI.dll. I want ...
0
votes
2answers
153 views
Could I create a function based on another function at runtime?
I'm playing with Microsoft's Detours to hook api, for example, I can change what happens when MessageBoxA
is called in this way:
int (WINAPI* pMessageBoxA)(HWND, LPCTSTR, LPCTSTR, UINT) = ...
0
votes
2answers
201 views
Intercept VB6 Button Click Event with Detours
I want to inject my own DLL into a VB6 process, to override the default click behavior of a button. The goal, to call my method, and never call the orig VB6 code in the click event handler.
It ...
0
votes
1answer
309 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
2answers
298 views
Problem trying to detour function with assembly
Just for the fun of it, I am trying to make a simple detouring library that will detour member functions by modifying the vtable of the class to create a detour. I am getting some odd behaviour. Here ...
0
votes
0answers
433 views
Detour (2.1 Professional) - 64bit “unresolved external symbol”
I compiled Detours 64 bit using:
nmake DETOURS_TARGET_PROCESSOR=X64
I'm using it in simple component. The component builds fine in 32 bit. But in 64 bit I am getting following linker errors:
...
0
votes
2answers
369 views
MS Detours Library, detouring non win api function
I want to use the windows detours library to detour a non win api function. The function is part of the Qt library (QtGui4.dll). I am wondering how I would set up the function signature for :
void ...
0
votes
1answer
100 views
exported library hook with QWidget::find() doesn't working
I have a QT hook.dll library which injected in 3rd party application with detours.dll.
And if i adding QWidget::find() method to hook.cpp, then i getting DllNotFoundException in process of installing ...
0
votes
2answers
106 views
How do function detour packages circumvent security
I am looking at some code that uses a function detour package called DetourXS. My application is targeted for Microsoft Server operating systems. Microsoft Research also has a Detours package and ...
0
votes
2answers
269 views
Using Microsoft Detours - bunch of undefined's
Hey everyone. I tried searching the compiler errors on google, but it didn't even return a search result. So, i'm a little lost here. I just downloaded microsoft detours, built it and got the ...
0
votes
2answers
589 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 ...