mirror of
https://github.com/Yara-Rules/rules
synced 2026-06-08 12:58:40 +00:00
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
/*
|
|
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.
|
|
*/
|
|
|
|
/*
|
|
Androguard module used in this rule file is under development by people at https://koodous.com/.
|
|
|
|
You can get it, along with installation instructions, at https://github.com/Koodous/androguard-yara
|
|
*/
|
|
|
|
import "androguard"
|
|
|
|
rule Android_Triada : android
|
|
{
|
|
meta:
|
|
author = "reverseShell - https://twitter.com/JReyCastro"
|
|
date = "2016/03/04"
|
|
description = "This rule try to detects Android.Triada.Malware"
|
|
sample = "4656aa68ad30a5cf9bcd2b63f21fba7cfa0b70533840e771bd7d6680ef44794b"
|
|
source = "https://securelist.com/analysis/publications/74032/attack-on-zygote-a-new-twist-in-the-evolution-of-mobile-threats/"
|
|
|
|
strings:
|
|
$string_1 = "android/system/PopReceiver"
|
|
condition:
|
|
all of ($string_*) and
|
|
androguard.permission(/android.permission.KILL_BACKGROUND_PROCESSES/) and
|
|
androguard.permission(/android.permission.SYSTEM_ALERT_WINDOW/) and
|
|
androguard.permission(/android.permission.GET_TASKS/)
|
|
}
|