Files
wechat-dump/android-interact.sh
T
2014-12-25 10:04:54 +08:00

71 lines
2.1 KiB
Bash
Executable File

#!/bin/bash -e
# File: android-interact.sh
# Date: Thu Dec 25 00:25:07 2014 +0800
# Author: Yuxin Wu <[email protected]>
# Please check that your path is the same, since this might be differnt on devices
RES_DIR="/mnt/sdcard/tencent/MicroMsg"
MM_DIR="/data/data/com.tencent.mm"
echo "Starting rooted adb server..."
adb root
if [[ $1 == "uin" ]]; then
adb pull $MM_DIR/shared_prefs/system_config_prefs.xml 2>/dev/null
uin=$(grep 'default_uin' system_config_prefs.xml | grep -o 'value="[0-9]*' | cut -c 8-)
[[ -n $uin ]] || {
echo "Failed to get wechat uin. You can try other methods, or report a bug."
exit 1
}
rm system_config_prefs.xml
echo "Got wechat uin: $uin"
elif [[ $1 == "imei" ]]; then
imei=$(adb shell dumpsys iphonesubinfo | grep 'Device ID' | grep -o '[0-9]*')
[[ -n $imei ]] || {
echo "Failed to get imei. You can try other methods, or report a bug."
exit 1
}
echo "Got imei: $imei"
elif [[ $1 == "db" || $1 == "res" ]]; then
echo "Looking for user dir name..."
userList=$(adb ls $RES_DIR | cut -f 4 -d ' ' \
| awk '{if (length() == 32) print}')
numUser=$(echo $userList | wc -l)
# choose the first user.
chooseUser=$(echo $userList | head -n1)
[[ -n $chooseUser ]] || {
echo "Could not find user. Please check whether your resource dir is $RES_DIR"
exit 1
}
echo "Found $numUser user(s). User chosen: $chooseUser"
if [[ $1 == "res" ]]; then
echo "Pulling resources... this might take a long time..."
mkdir resource
cd resource
adb pull $RES_DIR/$chooseUser/image2
adb pull $RES_DIR/$chooseUser/voice2
adb pull $RES_DIR/$chooseUser/emoji
adb pull $RES_DIR/$chooseUser/avatar
[[ -d image2 && -d voice2 && -d emoji && -d avatar ]] && {
echo "Resource pulled."
echo "Total size: $(du -sh $chooseUser | cut -f1)"
} || {
echo "Failed to download resource directory: $RES_DIR/$chooseUser"
exit 1
}
else
echo "Pulling database file..."
adb pull $MM_DIR/MicroMsg/$chooseUser/EnMicroMsg.db
[[ -f EnMicroMsg.db ]] && \
echo "File successfully downloaded to EnMicroMsg.db" || {
echo "Failed to pull database from adb"
exit 1
}
fi
else
echo "Usage: $0 <imei|uin|db|res>"
exit 1
fi