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

20 lines
404 B
Text

import "magic"
rule asprox_av_signature
{
meta:
author = "@h3x2b <tracker _AT h3x.eu>"
description = "Search for #Asprox/Kuluoz #malware downloader"
// "2GVWNQJz1"
condition:
new_file and
//file_type contains "peexe" and
uint16(0) == 0x5a4d and
(
signatures matches /Kuluoz/
or signatures matches /Asprox/
or signatures matches /KULUOZ/
or signatures matches /ASPROX/
)
}