Created
May 9, 2017 20:18
-
-
Save aerth/53f0ae0e67987ada11f0800da8f441a4 to your computer and use it in GitHub Desktop.
extract password from k9 mail client android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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