forked from Yara-Rules/rules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Yara-Rules#360 from bartblaze/master
Create RANSOM_Maze.yar
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |