08e8d462fe
RED PILL 🔴 💊
33 lines
1 KiB
Text
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)
|
|
}
|