1

我无法使用 detour 来获得我的第一个钩子。我正在使用 Detour 3.0。

我的代码编译得很好,我可以使用Winject注入 DLL ,但是,我想挂钩的函数似乎没有被挂钩。我正在尝试在记事本中挂钩函数 InsertDateTime 。
http://www.9injector.com/winject-injector/

我使用IDA Pro Free以十六进制表示法找到了 InsertDateTime 的地址。

下面的代码中是否有任何根本性的错误,或者在每次调用时过程中的内存都不会同时出现?

我注入 DLL 的代码如下所示:

 // dllmain.cpp : Defines the entry point for the DLL application.
#include "stdafx.h"

#include <windows.h>
#include "detours.h"
#pragma comment(lib, "detours.lib")
//

int(__stdcall* InsertDateTime)(int) = (int(__stdcall*)(int))(0x0100978A);
int MyInsertDateTime(int x) //Our function
{
//Messagebox
MessageBox(NULL, TEXT("InsertDateTime Just Got Called"), TEXT("InsertDateTime"), MB_OK);
return InsertDateTime(x); //Return the origional function
}

BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
switch (ul_reason_for_call) //Decide what to do
{
case DLL_PROCESS_ATTACH: //On dll attach
    //InsertDateTime = (int (__stdcall*)(int))DetourAttach((PVOID*)0x0100978A, MyInsertDateTime);
    //MessageBox(NULL, TEXT("InsertDateTime Just Got Called"), TEXT("InsertDateTime"), MB_OK);
    DetourAttach((PVOID*)(&InsertDateTime), (PVOID)MyInsertDateTime);
    //if(!errorCode) {
    //Detour successful

break;
case DLL_THREAD_ATTACH: //On thread attach
        DetourAttach((PVOID*)(&InsertDateTime), (PVOID)MyInsertDateTime);
break;
case DLL_THREAD_DETACH: //On thread detach
break;
case DLL_PROCESS_DETACH: //on process detach
    DetourDetach((PVOID*)0x0100978A, InsertDateTime);
break;
}
return TRUE;
}

此外,代码主要取自使用 Detour 1.5 的旧教程。参考:http ://www.moddb.com/groups/ibepex/tutorials/function-hooking

4

1 回答 1

4

Detours 正在使用类似于数据库的事务系统。在调用 Attach 或 Detach 之前,您必须启动一个事务,并且这些更改仅在您提交事务时应用。

DetourTransactionBegin();
DetourAttach(...);
DetourAttach(...);
DetourTransactionCommit();

我认为这是在 2.0 中引入的,这可以解释为什么 1.5 的教程代码不包含它。

于 2013-06-07T17:30:10.343 回答