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

12 lines
No EOL
277 B
Text

import "pe"
rule Check_Wine
{
meta:
Author = "Nick Hoffman"
Description = "Checks for the existence of Wine"
Sample = "de1af0e97e94859d372be7fcf3a5daa5"
strings:
$wine = "wine_get_unix_file_name"
condition:
$wine and pe.imports("kernel32.dll","GetModuleHandleA")
}