-
-
Save lucianmaxx/04f52debba4d45c524ba47f99a04d682 to your computer and use it in GitHub Desktop.
convert android backup.ab file to tarball
This file contains hidden or 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
# assumes unencrypted backup | |
# dump tarball to stdout | |
tail -n +5 backup.ab | openssl zlib -d | |
# show tarball TOC | |
tail -n +5 backup.ab | openssl zlib -d | tar tv | less |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment