16 lines
609 B
Text
16 lines
609 B
Text
|
/*
|
||
|
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 dropper:realshell {
|
||
|
meta:
|
||
|
author = "https://twitter.com/plutec_net"
|
||
|
reference = "https://koodous.com/"
|
||
|
source = "https://blog.malwarebytes.org/mobile-2/2015/06/complex-method-of-obfuscation-found-in-dropper-realshell/"
|
||
|
strings:
|
||
|
$b = "Decrypt.malloc.memset.free.pluginSMS_encrypt.Java_com_skymobi_pay_common_util_LocalDataDecrpty_Encrypt.strcpy"
|
||
|
|
||
|
condition:
|
||
|
$b
|
||
|
}
|