Skip to content

Instantly share code, notes, and snippets.

@benhylau
Created April 8, 2015 19:07
Show Gist options
  • Save benhylau/46264dd7aed089074c0c to your computer and use it in GitHub Desktop.
Save benhylau/46264dd7aed089074c0c to your computer and use it in GitHub Desktop.
Browse Android app database
$ adb backup -f data.ab APPLICATION_PACKAGE
$ dd if=data.ab bs=1 skip=24 | python -c "import zlib, sys; sys.stdout.write(zlib.decompress(sys.stdin.read()))" | tar -xvf - -C .
$ sqlite3 DATABASE_FILE
$ SELECT name FROM sqlite_master WHERE type='table';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment