Skip to content

Commit

Permalink
Merge pull request Yara-Rules#359 from hwvs/master
Browse files Browse the repository at this point in the history
Add MALW_FUDCrypt.yar and MALW_MSILStealer.yar
  • Loading branch information
jovimon authored Jan 7, 2020
2 parents 4c9e3bc + c453c86 commit ce92a41
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
29 changes: 29 additions & 0 deletions malware/MALW_FUDCrypt.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
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 FUDCrypter
{
meta:
description = "Detects unmodified FUDCrypt samples"
reference = "https://github.com/gigajew/FudCrypt/"
author = "https://github.com/hwvs"
last_modified = "2019-11-21"

strings:
$ = "OcYjzPUtJkNbLOABqYvNbvhZf" wide ascii
$ = "gwiXxyIDDtoYzgMSRGMckRbJi" wide ascii
$ = "BclWgISTcaGjnwrzSCIuKruKm" wide ascii
$ = "CJyUSiUNrIVbgksjxpAMUkAJJ" wide ascii
$ = "fAMVdoPUEyHEWdxQIEJPRYbEN" wide ascii
$ = "CIGQUctdcUPqUjoucmcoffECY" wide ascii
$ = "wcZfHOgetgAExzSoWFJFQdAyO" wide ascii
$ = "DqYKDnIoLeZDWYlQWoxZnpfPR" wide ascii
$ = "MkhMoOHCbGUMqtnRDJKnBYnOj" wide ascii
$ = "sHEqLMGglkBAOIUfcSAgMvZfs" wide ascii
$ = "JtZApJhbFAIFxzHLjjyEQvtgd" wide ascii
$ = "IIQrSWZEMmoQIKGuxxwoTwXka" wide ascii
condition:
1 of them
}
23 changes: 23 additions & 0 deletions malware/MALW_MSILStealer.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
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 MSILStealer
{
meta:
description = "Detects strings from C#/VB Stealers and QuasarRat"
reference = "https://github.com/quasar/QuasarRAT"
author = "https://github.com/hwvs"
last_modified = "2019-11-21"

strings:
$ = "Firefox does not have any profiles, has it ever been launched?" wide ascii
$ = "Firefox is not installed, or the install path could not be located" wide ascii
$ = "No installs of firefox recorded in its key." wide ascii
$ = "{0}\\\\FileZilla\\\\recentservers.xml" wide ascii
$ = "{1}{0}Cookie Name: {2}{0}Value: {3}{0}Path" wide ascii
$ = "[PRIVATE KEY LOCATION: \\\"{0}\\\"]" wide ascii
condition:
1 of them
}

0 comments on commit ce92a41

Please sign in to comment.