![]() |
|
#20
|
|||
|
|||
|
@mcp:
Today I tested setting the DebugPort to 0 in the PEPROCESS structure, it works fine like this: Code:
ULONG pid=(ULONG)PsGetCurrentProcessId();
NTSTATUS ret;
if(HiderIsHidden(pid, HideNtClose))
{
Log("[TITANHIDE] NtClose by %d\n", pid);
PVOID OldDebugPort=SetDebugPort(PsGetCurrentProcess(), 0);
ret=NtClose(Handle);
SetDebugPort(PsGetCurrentProcess(), OldDebugPort);
}
else
ret=NtClose(Handle);
And about: Quote:
Greetings |
| Tags |
| driver, hiding, ssdt, titanhide, x64 |
|
|