Skip to content

Instantly share code, notes, and snippets.

@lucianmaxx
Forked from bfritz/extract.sh
Created March 22, 2020 05:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucianmaxx/04f52debba4d45c524ba47f99a04d682 to your computer and use it in GitHub Desktop.
Save lucianmaxx/04f52debba4d45c524ba47f99a04d682 to your computer and use it in GitHub Desktop.
convert android backup.ab file to tarball
# 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