Skip to content

Instantly share code, notes, and snippets.

@Frostie314159
Created January 20, 2023 12:35
Show Gist options
  • Save Frostie314159/b9c4c578957284c089b3d383d13c0d6b to your computer and use it in GitHub Desktop.
Save Frostie314159/b9c4c578957284c089b3d383d13c0d6b to your computer and use it in GitHub Desktop.
A small script to dump app data via adb.
#!/bin/bash
adb backup -apk $1 -f /tmp/$1.ab
dd if=/tmp/$1.ab bs=4k iflag=skip_bytes skip=24 | zlib-flate -uncompress > /tmp/$1.tar
tar -xf /tmp/$1.tar -C /tmp/
cp -r /tmp/apps/$1 $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment