initial commit of the files

This commit is contained in:
ALittlePatate
2022-08-29 13:54:43 +02:00
commit 4625878297
9 changed files with 135 additions and 0 deletions

13
Quasar/quasar_rat.yara Normal file
View File

@@ -0,0 +1,13 @@
rule quasar_rat : rat
{
meta:
description = "Quasar rat"
threat_level = 3
in_the_wild = true
strings:
$quasar_name = "Quasar"
$add_DownloadFileCompleted = "add_DownloadFileCompleted"
$reverse_proxy_data = "ReverseProxyData"
condition:
$quasar_name and $add_DownloadFileCompleted and $reverse_proxy_data
}