Sneed-Reactivity/yara-mikesxrs/Nick Hoffman/Check_Debugger.yar

11 lines
320 B
Text
Raw Permalink Normal View History

import "pe"
rule Check_Debugger
{
meta:
Author = "Nick Hoffman"
Description = "Looks for both isDebuggerPresent and CheckRemoteDebuggerPresent"
Sample = "de1af0e97e94859d372be7fcf3a5daa5"
condition:
pe.imports("kernel32.dll","CheckRemoteDebuggerPresent") and
pe.imports("kernel32.dll","IsDebuggerPresent")
}