Skip to content

Instantly share code, notes, and snippets.

@heyitsnovi
Created June 16, 2020 08:34
Show Gist options
  • Save heyitsnovi/3898c1edd5f5bd8b7c2d66367bbb848e to your computer and use it in GitHub Desktop.
Save heyitsnovi/3898c1edd5f5bd8b7c2d66367bbb848e to your computer and use it in GitHub Desktop.
Export Sqlite Non Debuggable Android App
1 adb backup -noapk com.developername.appname
2 dd if=backup.ab bs=24 skip=1|openssl zlib -d > backup.tar;
3 tar -xvf backup.tar
https://medium.com/@k1d_bl4ck/how-to-extract-the-database-and-other-things-from-an-enterprise-android-app-2194a52b249b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment