
(Assembly) INT3 Instruction Scanning by External
June 22, 2022, 1:20 a.m. | 2 weeks
Code
BOOL IsDebuggerPresent_Int3()
{
__try
{
__asm int 3
}
__except(1)
{
return FALSE;
}
return TRUE;
}