mirror of https://github.com/x64dbg/GleeBug
added GetTEBLocation to emulate (now works in x64dbg again!)
This commit is contained in:
parent
76c5b7359a
commit
688fe89439
|
|
@ -154,6 +154,12 @@ public:
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
void* GetTEBLocation(HANDLE hProcess)
|
||||
{
|
||||
//TODO
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
bool HideDebugger(HANDLE hProcess, DWORD PatchAPILevel)
|
||||
{
|
||||
//TODO
|
||||
|
|
|
|||
|
|
@ -92,6 +92,11 @@ __declspec(dllexport) void* TITCALL GetPEBLocation(HANDLE hProcess)
|
|||
return emu.GetPEBLocation(hProcess);
|
||||
}
|
||||
|
||||
__declspec(dllexport) void* TITCALL GetTEBLocation(HANDLE hProcess)
|
||||
{
|
||||
return emu.GetTEBLocation(hProcess);
|
||||
}
|
||||
|
||||
__declspec(dllexport) bool TITCALL HideDebugger(HANDLE hProcess, DWORD PatchAPILevel)
|
||||
{
|
||||
return emu.HideDebugger(hProcess, PatchAPILevel);
|
||||
|
|
|
|||
Loading…
Reference in New Issue