Commit 4fa6917a by mmorenog

Create Android_Metasploit.yar

parent bc868d5a
/*
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 android_meterpreter
{
meta:
author="73mp74710n"
ref = "https://github.com/zombieleet/yara-rules/blob/master/android_metasploit.yar"
comment="Metasploit Android Meterpreter Payload"
strings:
$checkPK = "META-INF/PK"
$checkHp = "[Hp^"
$checkSdeEncode = /;.Sk/
$stopEval = "eval"
$stopBase64 = "base64_decode"
condition:
any of ($check*) or any of ($stop*)
}
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