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

16 lines
590 B
Text

rule malware_multi_pupy_rat
{
meta:
description = "pupy - opensource cross platform rat and post-exploitation tool"
reference = "https://github.com/n1nj4sec/pupy"
author = "@mimeframe"
strings:
$a1 = "dumping lsa secrets" nocase wide ascii
$a2 = "dumping cached domain passwords" nocase wide ascii
$a3 = "the keylogger is already started" nocase wide ascii
$a4 = "pupyutils.dns" wide ascii
$a5 = "pupwinutils.security" wide ascii
$a6 = "-PUPY_CONFIG_COMES_HERE-" wide ascii
condition:
3 of ($a*)
}