Sneed-Reactivity/yara-mikesxrs/alienvault/dbgdetect_funcs.yar
Sam Sneed 08e8d462fe OMG ISTG PLS WORK
RED PILL 🔴 💊
2024-07-25 12:43:35 -05:00

23 lines
481 B
Text

rule dbgdetect_funcs : dbgdetect
{
meta:
author = "AlienVault Labs"
type = "info"
severity = 1
description = "Debugger detection tricks"
strings:
$func1 = "IsDebuggerPresent"
$func2 = "OutputDebugString"
$func3 = "ZwQuerySystemInformation"
$func4 = "ZwQueryInformationProcess"
$func5 = "IsDebugged"
$func6 = "NtGlobalFlags"
$func7 = "CheckRemoteDebuggerPresent"
$func8 = "SetInformationThread"
$func9 = "DebugActiveProcess"
condition:
2 of them
}