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

18 lines
No EOL
355 B
Text

rule viotto_keylogger
{
meta:
author = "Paul B. (@hexlax) PhishMe Research"
description = "Matches unpacked Viotto Keylogger samples"
details "http://phishme.com/viotto-keylogger"
strings:
$hdr = "MZ"
$s1 = "Viotto Keylogger"
$s2 = "msvbvm60"
$s3 = "FtpPutFileA"
$s4 = "VBA6"
$s5 = "SetWindowsHookExA"
condition:
($hdr at 0) and all of ($s*)
}