1

我想知道是否可以在执行汇编指令后立即读取另一个进程的 eax 寄存器。

就我而言,我有以下汇编代码:

mov byte ptr ss:[EBP-4]
call dword ptr ds:[<&MSVCR100.??2@YAPAXI@Z>]
add esp, 4

这个想法是在“call dword ptr ds:[<&MSVCR100.??2@YAPAXI@Z>]”指令执行后获取 eax 值。实际上,我必须在我的 C++ 代码中检索在另一个进程中创建的对象的实例化返回的内存地址。

不知道我是否足够清楚。请原谅我糟糕的英语。

4

1 回答 1

2

您可以使用硬件断点调试进程。

使用 winapi 的示例:

DWORD address = 0x12345678; // address of the instruction after the call

DebugActiveProcess(pid); // PID of target process

CONTEXT ctx = {0};
ctx.ContextFlags = CONTEXT_DEBUG_REGISTERS | CONTEXT_INTEGER;
ctx.Dr0 = address;
ctx.Dr7 = 0x00000001;
SetThreadContext(hThread, &ctx); // hThread with enough permissions

DEBUG_EVENT dbgEvent;
while (true)
{
    if (WaitForDebugEvent(&dbgEvent, INFINITE) == 0)
        break;

    if (dbgEvent.dwDebugEventCode == EXCEPTION_DEBUG_EVENT &&
        dbgEvent.u.Exception.ExceptionRecord.ExceptionCode == EXCEPTION_SINGLE_STEP)
    {
        if (dbgEvent.u.Exception.ExceptionRecord.ExceptionAddress == (LPVOID)address)
        {
            GetThreadContext(hThread, &ctx);
            DWORD eax = ctx.Eax; // eax get
        }
    }

    ContinueDebugEvent(dbgEvent.dwProcessId, dbgEvent.dwThreadId, DBG_CONTINUE);
}
于 2013-05-10T21:50:40.413 回答