(Assembly) INT3 Instruction Scanning by External

Created the Wednesday 22 June 2022. Updated 4 days, 13 hours ago.

Code

            BOOL IsDebuggerPresent_Int3()
{
      __try
         { 
             __asm int 3 
         }
      __except(1) 
         { 
             return FALSE; 
         }
     return TRUE;

}