mirror of https://github.com/x64dbg/TitanEngine
added a helpful comment for WOW64 PEB64
This commit is contained in:
parent
0a63361a61
commit
7cffd0df6d
|
|
@ -71,6 +71,7 @@ __declspec(dllexport) void* TITCALL GetPEBLocation64(HANDLE hProcess)
|
||||||
DWORD peb32 = (DWORD)GetPEBLocation(hProcess);
|
DWORD peb32 = (DWORD)GetPEBLocation(hProcess);
|
||||||
if(peb32)
|
if(peb32)
|
||||||
{
|
{
|
||||||
|
// this offset is WRONG as of Win10 Creators Update.See comment in Global.Engine.Hider.cpp:192
|
||||||
peb32 += 0x1000; //PEB64 after PEB32
|
peb32 += 0x1000; //PEB64 after PEB32
|
||||||
return (void*)peb32;
|
return (void*)peb32;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue