Skip to content

Commit

Permalink
Create MALW_Emotet.yar
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorenog authored Oct 19, 2017
1 parent 53b8efd commit d9b429a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions malware/MALW_Emotet.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
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 Emotets{
meta:
author = "pekeinfo"
date = "2017-10-18"
description = "Emotets"
strings:
$mz = { 4d 5a }
$cmovnz={ 0f 45 fb 0f 45 de }
$mov_esp_0={ C7 04 24 00 00 00 00 89 44 24 0? }
$_eax={ 89 E? 8D ?? 24 ?? 89 ?? FF D0 83 EC 04 }
condition:
($mz at 0 and $_eax in( 0x2854..0x4000)) and ($cmovnz or $mov_esp_0)
}

0 comments on commit d9b429a

Please sign in to comment.