We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kirandawadi/volatility3-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Android_AVITOMMS.yar•1.02 KiB
import "androguard"
rule Android_AVITOMMS_Variant
{
meta:
author = "Jacob Soo Lead Re"
date = "28-May-2016"
description = "This rule try to detects Spy.Banker AVITO-MMS Variant"
source = "https://blog.avast.com/android-banker-trojan-preys-on-credit-card-information"
condition:
(androguard.receiver(/AlarmReceiverKnock/) and
androguard.receiver(/BootReciv/) and
androguard.receiver(/AlarmReceiverAdm/))
}
rule Android_AVITOMMS_Rule2
{
meta:
author = "Jacob Soo Lead Re"
date = "01-July-2016"
description = "This rule try to detects Spy.Banker AVITO-MMS Variant"
source = "https://blog.avast.com/android-banker-trojan-preys-on-credit-card-information"
condition:
androguard.service(/IMService/) and
androguard.receiver(/BootReciv/) and
androguard.permission(/android.permission.RECEIVE_BOOT_COMPLETED/i) and
androguard.permission(/android.permission.KILL_BACKGROUND_PROCESSES/i) and
androguard.permission(/android.permission.SEND_SMS/i) and
androguard.permission(/android.permission.INTERNET/i)
}