BlackLotus/src/Bot/antidebug.c

20 lines
299 B
C
Raw Normal View History

2023-07-12 16:43:04 -07:00
#include <Windows.h>
#include "antidebug.h"
#include "nzt.h"
#include "utils.h"
BOOL IsBeingDebuggedAlt()
{
return GetPeb()->BeingDebugged;
}
WINERROR IsBeingDebugged()
{
WINERROR Status = NO_ERROR;
if (IsBeingDebuggedAlt())
return ERROR_UNSUCCESSFULL;
return Status;
}