Sneed-Reactivity/yara-mikesxrs/pombredanne/Android_AVITOMMS_Variant.yar
Sam Sneed 08e8d462fe OMG ISTG PLS WORK
RED PILL 🔴 💊
2024-07-25 12:43:35 -05:00

33 lines
1 KiB
Text

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)
}