Skip to content

Commit

Permalink
Merge pull request rednaga#17 from circleous/master
Browse files Browse the repository at this point in the history
Add DxShield
  • Loading branch information
CalebFenton authored Oct 31, 2016
2 parents 3278246 + c17ccf0 commit 6665d82
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions apkid/rules/apk/packers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,20 @@

include "common.yara"

rule dxshield : packer
{
meta:
description = "DxShield"
// http://www.nshc.net/wp/portfolio-item/dxshield_eng/

strings:
$decryptlib = "libdxbase.so"
$res = "assets/DXINFO.XML"
condition:
is_apk and ($decryptlib and $res)
}

rule secneo : packer
{
meta:
Expand Down

0 comments on commit 6665d82

Please sign in to comment.