Releases: LuckyPray/DexKit
Releases · LuckyPray/DexKit
1.0.2
Update logs:
- rename API
FindMethodOpPrefixSeq
toFindMethodUsingOpPrefixSeq
. - support use classLoader load memory dex file (suitable for most reinforce apps),
useDexKitBridge.create(loader: ClassLoader, useCookieDexFile: Boolean)
and set option useCookieDexFile to true. - add option unique_result (default true) in these api:
findMethodCaller
,findMethodInvoking
,findMethodUsingField
,findMethodUsingString
.
Now you can use them to count visits (although this is not a good deobfuscation practice).
Note: for normally apps, using
DexKitBridge.create(classLoader, true)
may be a problem.
Because the dexfile in cookies may be modified (dex2oat), currently DexKit cannot be parsed odex'squick
instruction.