Commit d82e1410 by mmorenog Committed by GitHub

Update RAT_DarkComet.yar

parent 6bfc6569
......@@ -110,3 +110,21 @@ rule DarkComet_4 : RAT
condition:
all of them
}
rule DarkComet_5
{
meta:
maltype = "DarkComet RAT"
author = "https://github.com/reed1713"
description = "Malware creates the MSDCSC directory, which is a common path utilized by DarkComet, as well as the mutex pattern."
strings:
$type="Microsoft-Windows-Security-Auditing"
$eventid="4688"
$data=/AppData\\Local\\Temp\\MSDCSC\\.+\.exe/
$type1="Microsoft-Windows-Security-Auditing"
$eventid1="4674"
$data1=/DC_MUTEX-[0-9A-Z]{7}/
condition:
($type and $eventid and $data) or ($type1 and $eventid1 and $data1)
}
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