Skip to content

Commit

Permalink
improve yidun(NetEase) detection rule (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiTheModder authored Oct 14, 2024
1 parent 554a789 commit d30d103
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apkid/rules/apk/packers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -786,9 +786,11 @@ rule yidun : packer
$entry_point = "Lcom/netease/nis/wrapper/Entry"
$jni_func = "Lcom/netease/nis/wrapper/MyJni"
$lib = "libnesec.so"
$nedata = "assets/nedata.db"
$nedig = "assets/nedig.properties"
condition:
is_apk and (#lib > 1) or ($anti_trick and $entry_point and $jni_func)
is_apk and (#lib > 1 or ($anti_trick and $entry_point and $jni_func) or ($nedata and $nedig))
}

rule apkpacker : packer
Expand Down

0 comments on commit d30d103

Please sign in to comment.