mirror of
https://github.com/Yara-Rules/rules
synced 2026-06-08 12:58:40 +00:00
20 lines
557 B
Plaintext
20 lines
557 B
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.
|
|
|
|
*/
|
|
|
|
import "androguard"
|
|
|
|
rule Android_Clicker_G
|
|
{
|
|
meta:
|
|
author = "Jacob Soo Lead Re"
|
|
date = "01-July-2016"
|
|
description = "This rule try to detects Clicker.G samples"
|
|
reference = "https://blogs.mcafee.com/mcafee-labs/android-malware-clicker-dgen-found-google-play/"
|
|
strings:
|
|
$a = "upd.php?text="
|
|
condition:
|
|
androguard.receiver(/MyBroadCastReceiver/i) and $a
|
|
}
|