Commit be2ca124 by Yara Rules

Added mirage rule

Added mirage rule
parent c30dcb56
...@@ -30,3 +30,21 @@ rule Mirage : Family ...@@ -30,3 +30,21 @@ rule Mirage : Family
condition: condition:
MirageStrings MirageStrings
} }
rule Mirage_APT : APT Backdoor Rat
{
meta:
Author = "Silas Cutler"
Date = "yyyy/mm/dd"
Description = "Malware related to APT campaign"
Reference = "Useful link"
strings:
$a1 = "welcome to the desert of the real"
$a2 = "Mirage"
$b = "Encoding: gzip"
$c = /\/[A-Za-z]*\?hl=en/
condition:
(($a1 or $a2) or $b) and $c
}
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