Windows Assembly / INT3 Instruction Scanning

Author External
Platform Windows
Language Assembly
Technique INT3 Instruction Scanning

Code

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

}

Created

June 22, 2022

Last Revised

April 22, 2024