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

22 lines
795 B
Text

rule EzuriLoaderOSX : OSXMalware {
meta:
author = "AT&T Alien Labs"
type = "malware"
description = "Detects Ezuri Golang loader."
copyright = "AT&T Cybersecurity 2020"
reference = "da5ae0f2a4b6a52d483fb006bc9e9128"
report = "https://cybersecurity.att.com/blogs/labs-research/malware-using-new-ezuri-memory-loader"
strings:
$a1 = "ezuri/stub/main.go"
$a2 = "main.runFromMemory"
$a3 = "main.aesDec"
$Go = "go.buildid"
condition:
(uint32(0) == 0xfeedface or
uint32(0) == 0xcefaedfe or
uint32(0) == 0xfeedfacf or
uint32(0) == 0xcffaedfe or
uint32(0) == 0xcafebabe or
uint32(0) == 0xbebafeca)
and $Go and filesize < 5MB and all of ($a*)
}