Just some tips I found useful

Android

Root android phone on emulator

Some commands

  • android-backup-extractor (github.com)
    • adb backup -apk -shared -all -f /tmp/backup.ad
    • java -jar build/libs/abe.jar /tmp/backup.ad /tmp/backup.tar
  • ~/Android/Sdk/build-tools/28.0.3/aapt d permissions app.apk
  • apksigner verify –verbose app.apk
  • Signature de l’app:
    • decompress the APK
    • openssl pkcs7 -inform DER -in original/META-INF/CERT.RSA -noout -print_certs -text
    • OR
    • keytool -printcert -file original/META-INF/CERT.RSA
  • Encrypted source code ?
    • decompress the APK
    • dex2jar classes.dex
    • jd-gui classes-dex2jar.jar

tools

Last updated on Thursday, October 15, 2020
Published on Thursday, October 15, 2020