为什么API在C ++中挂钩ExtTextOut和DrawText只输出垃圾?

时间:2013-06-10 20:16:51

标签: c++ hook detours

我正在尝试使用Detour创建一个API挂钩来从第三方程序中提取文本输出。但是,我只会得到垃圾,很多数字而且没有文字输出。

这些函数何时被调用?他们是否被要求绘制除文本以外的其他东西? 如果有第三方程序使用的一些高级工具来避免拦截这些调用,是否有一些基本的例子我可以尝试确保我的方法真正正确地接收文本?换句话说,Windows中是否有一些程序使用这些方法在屏幕上绘制文本?

我的代码如下所示:

BOOL (__stdcall *Real_ExtTextOut)(HDC hdc,int x, int y, UINT options, const RECT* lprc,LPCWSTR text,UINT cbCount, const INT* lpSpacingValues) = ExtTextOut;
BOOL (__stdcall *Real_DrawText)(HDC hdc, LPCWSTR text,  int nCount, LPRECT lpRect, UINT uOptions) = DrawText;

int WINAPI Mine_DrawText(HDC hdc, LPCWSTR text,  int nCount, LPRECT lpRect, UINT uOptions)
{
        ofstream myFile;
    myFile.open ("C:\\temp\\textHooking\\textHook\\example.txt", ios::app);
    for(int i = 0; i < nCount; ++i)
        myFile << text[i];
    myFile << endl;
    int rv = Real_DrawText(hdc, text, nCount, lpRect, uOptions);

    return rv;
}

BOOL WINAPI Mine_ExtTextOut(HDC hdc, int X, int Y, UINT options, RECT* lprc, LPCWSTR text, UINT cbCount, INT* lpSpacingValues)
{
    ofstream myFile;
    myFile.open ("C:\\temp\\textHooking\\textHook\\example2.txt", ios::app);
    for(int i = 0; i < cbCount; ++i)
        myFile << text[i];
    myFile << endl;
    BOOL rv = Real_ExtTextOut(hdc, X, Y, options, lprc, text, cbCount, lpSpacingValues);

    return rv;
}

// Install the DrawText detour whenever this DLL is loaded into any process
BOOL APIENTRY DllMain( HMODULE hModule, DWORD  ul_reason_for_call, LPVOID lpReserved){
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
            DetourTransactionBegin();
            DetourUpdateThread(GetCurrentThread());
            DetourAttach(&(PVOID&)Real_ExtTextOut, Mine_ExtTextOut);
            DetourAttach(&(PVOID&)Real_DrawText, Mine_DrawText);
            DetourTransactionCommit();
    case DLL_THREAD_ATTACH:
    case DLL_THREAD_DETACH:
    case DLL_PROCESS_DETACH:
        break;
    }

    return TRUE;
}

1 个答案:

答案 0 :(得分:2)

您正在将UTF-16字符代码写为整数。因此文件充满了数字。将文本缓冲区直接blit到文件可能更容易:

ofstream myFile;
myFile.open("C:\\temp\\textHooking\\textHook\\example.txt", ios::app);
myFile.write(reinterpret_cast<const char*>text, nCount*sizeof(*text));
myFile << endl;

您可能希望将UTF-16LE BOM放在文件的前面,以帮助您的文本编辑器计算出正在使用的编码。