Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JiaguK - packer #375

Merged
merged 13 commits into from
Nov 8, 2023
15 changes: 15 additions & 0 deletions apkid/rules/dex/packers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -604,3 +604,18 @@ rule custom_flutter : packer
condition:
is_dex and all of them
}

rule jiagu_k : packer
{
meta:
description = "Jiagu K"
sample1 = "aa666b75ffb3588dd41c8e546d53e353cda67cf278b167c7737b1169262856bb"
sample2 = "d9baf66e7ac116a8c68599ef16fae5397ac4fd0847e2fcfe3ee2c155ecf4f850"
author = "ReBensk"
enovella marked this conversation as resolved.
Show resolved Hide resolved

strings:
$classNameString = { 00 10 4C 76 69 72 62 6F 78 2F 53 74 75 62 41 70 70 3B 00 } // Lvirbox/StubApp;
enovella marked this conversation as resolved.
Show resolved Hide resolved

condition:
is_dex and all of them and (dex.header.data_size + dex.header.data_offset) < dex.header.file_size
}