Skip to content

Instantly share code, notes, and snippets.

@yehgdotnet
Created November 2, 2019 02:32
Show Gist options
  • Save yehgdotnet/397120706f5028c48924721bbbeee150 to your computer and use it in GitHub Desktop.
Save yehgdotnet/397120706f5028c48924721bbbeee150 to your computer and use it in GitHub Desktop.
Mobile App Backup files analysis
Correct Backup Analysis Approach
Procedure for backup analysis
=============================
before-app-run
during app run
post-run
Making Android Backup
========================
adb root
adb backup --all -shared
; convert to tar format from Kali
dd if=backup.ab bs=24 skip=1 | zlib -d >backup.tar # require python script SANS 575 zlib decompression support /usr/local/bin/zlib
tar xvf backup.tar -C android-backup/
ls
[output:
apps shared]
cd apps/com.xx.yy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment