Skip to content

Commit

Permalink
Update RAT_DarkComet.yar
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorenog committed Sep 30, 2016
1 parent 6bfc656 commit d82e141
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions malware/RAT_DarkComet.yar
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

0 comments on commit d82e141

Please sign in to comment.