Skip to content

Instantly share code, notes, and snippets.

@aerth
Created May 9, 2017 20:18
Show Gist options
  • Save aerth/53f0ae0e67987ada11f0800da8f441a4 to your computer and use it in GitHub Desktop.
Save aerth/53f0ae0e67987ada11f0800da8f441a4 to your computer and use it in GitHub Desktop.
extract password from k9 mail client android
adb into android, grab /data/data/com.fsck.k9/databases/preferences_storage
this is easier with sqlitebrowser
i had to remove some chars off the beginning of each string,
STRINGS=$(strings preferences_storage | grep "==")
for i in $STRINGS; do
echo $i | base64 -d
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment