Reversing APKs
Decompiling and understanding unknown APKs, using dynamic and static testing
Decompiling
$ apktool d -f -r app.apk -o app/ # Decompile to smali and assets
I: Using Apktool 2.4.0-dirty on app.apk
I: Copying raw resources...
I: Baksmaling classes.dex...
I: Copying assets and libs...
I: Copying unknown files...
I: Copying original files...$ unzip app.apk -d app/Java
$ d2j-dex2jar.sh -f app.apk -o app.jar # Extract JAR from APK
dex2jar app.apk -> app.jarReact Native
C# with .NET
Automatic tool
.dll filesApp Resources
Last updated

