Skip to content

Commit

Permalink
Add rule for custom Chinese packer: ChornClickers (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
enovella authored and CalebFenton committed Jul 14, 2018
1 parent 71bacda commit f0611c7
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions apkid/rules/apk/packers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ rule secneo : packer
is_apk and any of ($encrypted_dex, $encryptlib2, $encryptlib1)
}


rule dexprotector : packer
{

Expand All @@ -115,7 +114,6 @@ rule dexprotector : packer
is_apk and 1 of ($encrptlib_*) and $encrptcustom
}


rule dexprotector_a : packer
{
/**
Expand Down Expand Up @@ -174,7 +172,6 @@ rule dexprotector_b : packer
not dexprotector
}


rule apkprotect : packer
{
meta:
Expand Down Expand Up @@ -516,7 +513,6 @@ rule yidun : packer
is_apk and (#lib > 1) or ($anti_trick and $entry_point and $jni_func)
}


rule apkpacker : packer
{
meta:
Expand All @@ -534,3 +530,22 @@ rule apkpacker : packer
condition:
is_apk and all of them
}

rule chornclickers : packer
{

meta:
// This has no name so we made one up from Ch-china,-orn-porn and -clickers
description = "ChornClickers"
url = "https://github.com/rednaga/APKiD/issues/93"
example = "0c4a26d6b27986775c9c58813407a737657294579b6fd37618b0396d90d3efc3"
author = "Eduardo Novella"

strings:
$a = "lib/armeabi/libhdus.so"
$b = "lib/armeabi/libwjus.so"
condition:
is_apk and all of them
}

0 comments on commit f0611c7

Please sign in to comment.