Commit 8a8956e2 by mmorenog Committed by GitHub

Create APT_FIN7.yar

parent cff1b743
/*
This Yara ruleset is under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as long as you use it under this license.
*/
rule fin7_functions
{
meta:
author="@j0sm1"
url="https://www.securityartwork.es/2017/06/16/analisis-del-powershell-usado-fin7/"
description="Detect functions coded with ROR edi,D"
strings:
$h1={58 A4 53 E5} // VirtualAllocEx
$h2={4C 77 26 07} // LoadLibraryEx
$h3={6A C9 9C C9} // DNSQuery_UTF8
$h4={44 F0 35 E0} // Sleep
$h5={F4 00 8E CC} // lstrlen
condition:
2 of ( $h* )
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment