Skip to content

Commit

Permalink
Merge pull request Yara-Rules#360 from bartblaze/master
Browse files Browse the repository at this point in the history
Create RANSOM_Maze.yar
  • Loading branch information
jovimon authored Jan 7, 2020
2 parents 6a600e7 + 4e88977 commit 4c9e3bc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions malware/RANSOM_Maze.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
rule Maze
{
meta:
description = "Identifies Maze ransomware in memory or unpacked."
author = "@bartblaze"
date = "2019-11"
tlp = "White"

strings:
$ = "Enc: %s" ascii wide
$ = "Encrypting whole system" ascii wide
$ = "Encrypting specified folder in --path parameter..." ascii wide
$ = "!Finished in %d ms!" ascii wide
$ = "--logging" ascii wide
$ = "--nomutex" ascii wide
$ = "--noshares" ascii wide
$ = "--path" ascii wide
$ = "Logging enabled | Maze" ascii wide
$ = "NO SHARES | " ascii wide
$ = "NO MUTEX | " ascii wide
$ = "Encrypting:" ascii wide
$ = "You need to buy decryptor in order to restore the files." ascii wide
$ = "Dear %s, your files have been encrypted by RSA-2048 and ChaCha algorithms" ascii wide
$ = "%s! Alert! %s! Alert! Dear %s Your files have been encrypted by %s! Attention! %s" ascii wide
$ = "DECRYPT-FILES.txt" ascii wide fullword
condition:
5 of them
}

0 comments on commit 4c9e3bc

Please sign in to comment.