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

37 lines
1 KiB
Text

import "androguard"
rule Android_Godlike
{
meta:
author = "Jacob Soo Lead Re"
date = "01-July-2016"
description = "This rule will be able to tag all the samples with local exploits."
source = "http://blog.trendmicro.com/trendlabs-security-intelligence/godless-mobile-malware-uses-multiple-exploits-root-devices/"
strings:
$a = "libgodlikelib.so"
condition:
(androguard.service(/godlike\.s/i) and
androguard.service(/godlike\.g/i) and
androguard.receiver(/godlike\.e/i)) or
$a
}
rule Android_Godlike_2
{
meta:
author = "Jacob Soo Lead Re"
date = "01-July-2016"
description = "This rule will be able to tag all the samples with remote exploits."
source = "http://blog.trendmicro.com/trendlabs-security-intelligence/godless-mobile-malware-uses-multiple-exploits-root-devices/"
strings:
$a_1 = "libroot.so"
$a_2 = "silent91_arm_bin.root"
$a_3 = "libr.so"
$a_4 = "libpl_droidsonroids_gif.so"
condition:
(androguard.service(/FastInstallService/i) and
androguard.service(/DownloadService/i)) and
any of ($a_*)
}