Created
November 2, 2019 02:32
-
-
Save yehgdotnet/397120706f5028c48924721bbbeee150 to your computer and use it in GitHub Desktop.
Mobile App Backup files analysis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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