From 153f73690b49d8477f9c67e79e76b2da899d0071 Mon Sep 17 00:00:00 2001 From: mmorenog Date: Thu, 26 Nov 2015 09:11:11 +0100 Subject: [PATCH] Create BlackWorm.yar --- malware/BlackWorm.yar | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 malware/BlackWorm.yar diff --git a/malware/BlackWorm.yar b/malware/BlackWorm.yar new file mode 100644 index 0000000..4ae9c3b --- /dev/null +++ b/malware/BlackWorm.yar @@ -0,0 +1,25 @@ +/* + This Yara ruleset is under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as + long as you use it under this license. +*/ +rule BlackWorm{ + meta: + author = "Brian Wallace @botnet_hunter" + author_email = "bwall@ballastsecurity.net" + date = "2015-05-20" + description = "Identify BlackWorm" + strings: + $str1 = "m_ComputerObjectProvider" + $str2 = "MyWebServices" + $str3 = "get_ExecutablePath" + $str4 = "get_WebServices" + $str5 = "My.WebServices" + $str6 = "My.User" + $str7 = "m_UserObjectProvider" + $str8 = "DelegateCallback" + $str9 = "TargetMethod" + $str10 = "000004b0" wide + $str11 = "Microsoft Corporation" wide + condition: + all of them +}