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

15 lines
295 B
Text

rule rlpack {
meta:
description = "RLPack packed file"
block = false
quarantine = false
strings:
$mz = "MZ"
$text1 = ".packed\x00"
$text2 = ".RLPack\x00"
condition:
$mz at 0 and $text1 in (0..1024) and $text2 in (0..1024)
}