mirror of
https://github.com/Yara-Rules/rules
synced 2026-06-08 12:58:40 +00:00
43 lines
1.2 KiB
Plaintext
43 lines
1.2 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_Malware : iBanking android
|
|
{
|
|
meta:
|
|
author = "Xylitol xylitol@malwareint.com"
|
|
date = "2014-02-14"
|
|
description = "Match first two bytes, files and string present in iBanking"
|
|
reference = "http://www.kernelmode.info/forum/viewtopic.php?f=16&t=3166"
|
|
|
|
strings:
|
|
// Generic android
|
|
$pk = {50 4B}
|
|
$file1 = "AndroidManifest.xml"
|
|
// iBanking related
|
|
$file2 = "res/drawable-xxhdpi/ok_btn.jpg"
|
|
$string1 = "bot_id"
|
|
$string2 = "type_password2"
|
|
condition:
|
|
($pk at 0 and 2 of ($file*) and ($string1 or $string2))
|
|
}
|
|
|
|
rule Installer: banker android
|
|
{
|
|
meta:
|
|
author = "https://twitter.com/plutec_net"
|
|
reference = "https://koodous.com/"
|
|
description = "Applications with Installer as an application name"
|
|
|
|
condition:
|
|
androguard.package_name("Jk7H.PwcD")
|
|
}
|