Skip to content

Instantly share code, notes, and snippets.

@bfritz
Created January 15, 2016 19:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bfritz/4d1234f415cc6287be65 to your computer and use it in GitHub Desktop.
Save bfritz/4d1234f415cc6287be65 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