c - 我的dll注入(inject)。编译为 32 位时成功,但编译为 64 位时失败

标签 c windows winapi dll dll-injection

我的操作系统是 Windows 8.1 64 位。我的程序是向目标进程注入(inject)一个DLL文件,当这个DLL文件附加到一个进程时,它将在D上创建一个.txt文件: 并在其中写入一些文字并保存。这只是一个测试。但是当我将程序编译为 32 位程序并且我的 DLL 代码编译为 32 位时,它成功了,它可以创建文件并保存内容 。但是当我将DLL代码和程序编译为64位时,它没有抛出任何异常,一切似乎都成功了。但您找不到它创建的 .txt 文件。所以,它失败了,没有执行你想做的事情。

以下是我的 DLL 代码

#include "stdafx.h"
#include<Windows.h>
#include<stdio.h>
#include<stdlib.h>

BOOL create();

BOOL APIENTRY DllMain( HMODULE hModule,
                   DWORD  ul_reason_for_call,
                   LPVOID lpReserved
                 )
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
    create();
    break;
case DLL_PROCESS_DETACH:
    break;
}
return TRUE;
}


BOOL create()
{
wchar_t FileName[] = L"D:\\x64injecttest.txt";
HANDLE hFile = ::CreateFile(FileName, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_ALWAYS, NULL, NULL);
if (hFile == INVALID_HANDLE_VALUE)
{
    printf("createfile fails,the error code is:%u\n", GetLastError());
    system("PAUSE");
    return 0;
}

char str[] = "if you see this file,then you have success\n";
WriteFile(hFile, str, strlen(str) + 1, NULL, NULL);

CloseHandle(hFile);
return TRUE;
}

以下是我的程序代码

#include<stdio.h>
#include<stdlib.h>
#include<Windows.h>
#include<TlHelp32.h>


LPTHREAD_START_ROUTINE lpThreadProc;   //pointes to the address of LoadLibraryW API
typedef DWORD(WINAPI *pFunction)(PHANDLE ThreadHandle, ACCESS_MASK DesiredAccess, LPVOID ObjectAttributes, HANDLE ProcessHandle, LPTHREAD_START_ROUTINE lpStartAddress, LPVOID lpParameter, BOOL CreateSuspended, DWORD dwStackSize, DWORD dw1, DWORD dw2, LPVOID pUnknown); //I inject DLL to other process with the NtCreateThreadEx API , and this function pointer would point to the address of this API 


DWORD SearchForTarget(wchar_t target[])
{
PROCESSENTRY32 pe32;
pe32.dwSize = sizeof(pe32);

HANDLE hSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (hSnap == INVALID_HANDLE_VALUE)
{
    printf("fails when createtoolhelp32snapshot,the error code is:%u\n", GetLastError());
    system("PAUSE");
    exit(-1);
}

BOOL b = ::Process32First(hSnap, &pe32);
while (b)
{
    printf("the process name is:%ws\n", pe32.szExeFile);
    printf("the process id is:%u\n", pe32.th32ProcessID);

    if (wcscmp(pe32.szExeFile, target) == 0)
        return pe32.th32ProcessID;

    b = Process32Next(hSnap, &pe32);
}

return -1;

}

BOOL InjectDLL(DWORD pid)
{

wchar_t DLLPath[] = L"C:\\Users\\Dell-pc\\Desktop\\x64InjectTest\\Debug\\DLL.dll";

DWORD length = wcslen(DLLPath);
DWORD trueLength = length * 2 + 2;

HANDLE hProcess = ::OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
if (hProcess == INVALID_HANDLE_VALUE)
{
    printf("openprocess fails,the error code is:%u\n", GetLastError());
    system("PAUSE");
    exit(-1);
}

LPVOID pBaseAddress = ::VirtualAllocEx(hProcess, NULL, trueLength, MEM_COMMIT, PAGE_READWRITE);
if (pBaseAddress == NULL)
{
    printf("virtualallocex fails,the error code is:%u\n", GetLastError());
    system("PAUSE");
    exit(-1);
}

BOOL b = WriteProcessMemory(hProcess, pBaseAddress, DLLPath, trueLength, NULL);
if (b == 0)
{
    printf("writeprocessmemory fail,the error code is:%u\n", GetLastError());
    system("PAUSE");
    exit(-1);
}

HMODULE hModule = ::LoadLibrary(L"kernel32.dll");
lpThreadProc = (LPTHREAD_START_ROUTINE)::GetProcAddress(hModule, "LoadLibraryW");

HMODULE hNtdll = ::LoadLibrary(L"ntdll.dll");
pFunction pFunc = (pFunction)GetProcAddress(hNtdll, "NtCreateThreadEx");

printf("it is ready to create thread\n");

HANDLE hRemoteThread;
pFunc(&hRemoteThread, 0x1FFFFF, NULL, hProcess, lpThreadProc, pBaseAddress, FALSE, NULL, NULL, NULL, NULL);

if (hRemoteThread == NULL)
{
    printf("nrcreateprocessex fails,the error code is:%u\n", GetLastError());
    system("PAUSE");
    exit(-1);
}

WaitForSingleObject(hRemoteThread, INFINITE);

return TRUE;
}

int main()
{
wchar_t target[] = L"notepad.exe";   //inject my DLL to notepad.exe
DWORD pid = SearchForTarget(target);
if (pid == -1)
{
    printf("not find the target \n");
    system("PAUSE");
    return -1;
}
InjectDLL(pid);

system("PAUSE");

return 0;
}

我将我的代码(包括我的程序和我的 DLL)编译为 32 位,并在我的 Windows 8.1 64 位操作系统上运行它,它成功了。但是当我将它(我的程序和DLL)编译为64位时,它没有抛出任何异常,而且看起来它成功了,只是它没有创建文件并向其中写入一些单词(这是应该做的当 DLL 附加到进程时)。那么,有人知道问题出在哪里吗?还有一件事,我使用 Visual Studio 2013。

最佳答案

我猜想在您的示例中导致 32/64 位问题的行如下。

lpThreadProc = (LPTHREAD_START_ROUTINE)::GetProcAddress(hModule, 
"LoadLibraryW");

这为您提供了当前进程中 LoadLibraryW 的地址,而不是目标进程中的地址。由于目标进程是 64 位,因此地址 99.99999% 都会有所不同。

即使在 32 位进程中,您通常也不应该假设 DLL 总是加载到相同的地址空间中。

要解决您的问题,您可能必须枚举目标进程中的模块并从那里找到您的入口点。有 API 可以帮助解决这个问题。谷歌搜索 GetRemoteProcAddress 也会为您指明正确的方向。

除此之外,您的加载程序还存在许多其他问题。就我个人而言,我建议您使用其他人已经写过的一个。过去有很多好的加载器可以解决许多警告,并且也有多种注入(inject)机制。

关于c - 我的dll注入(inject)。编译为 32 位时成功,但编译为 64 位时失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40255705/

相关文章:

database - 如何中断与数据库的连接以进行测试?

c++ - 在WIN32 GDI中使用SetWindowText,并安全删除输入的数据

c - 如何识别C中整数输入的特定数字?

c - 提取 Gstreamer alsa 麦克风数据并使用我自己的网络解决方案通过 UDP 发送数据包进行传输

C:malloc'ed指针从函数返回后改变位置?

c - x 向服务器发送数据以在 GUI 上显示输出的线程数

c - 使用互斥锁进行 Pthread 同步

windows - 如何在批处理文件中为我自己的命令设置帮助实用程序?

c++ - 为基于对话框的应用程序实现回调函数

c++ - 加载 HBITMAP 并将其转换为 OpenGL 纹理