Small tool to display chats from the Android msgstore.db database.
- You need root access to your phone. If you don't know what it is: Wikipedia
- Download your WhatsApp database and key files:
- /data/data/com.whatsapp/files/key
- /data/data/com.whatsapp/databases/msgstore.db
- /data/data/com.whatsapp/databases/wa.db
- Open WhatsApp Viewer
- File -> Open -> Select file
- Select msgstore.db in the folder "extracted"
- Leave account name empty, is was used for older versions of WhatsApp (crypt5)
- Optional: If you want, you can import contact names from the wa.db file
"WhatsApp Viewer.exe" -decrypt14 msgstore-2016-10-22.1.db.crypt14 whatsapp.cryptkey14 decrypted.db
You cannot see bigger images because only thumbnails are stored in the database.
Open WhatsApp Viewer.sln.
See build-release.cmd.
You can also use vagrant to build (for example if you are on a Linux machine):
vagrant up
vagrant powershell -c 'cmd.exe /c "cd C:\vagrant && build-release.cmd"'
I use the Android Emulator to test WhatsApp (and the creation of backups) on my developer machine.
I'm on Manjaro and use this (see here):
sudo mkdir /opt/android-sdk/platforms
sudo mkdir /opt/android-sdk/platform-tools
yay -S android-sdk-cmdline-tools-latest android-emulator
yes | sudo sdkmanager "system-images;android-30;google_apis;x86"
avdmanager create avd --name "WhatsApp-Viewer" --package "system-images;android-30;google_apis;x86" --device "Nexus 6P"
emulator -avd "WhatsApp-Viewer"
adb install ./WhatsApp.apk
adb pull -a /sdcard/WhatsApp/Databases/msgstore.db.crypt14
adb root
adb pull -a /data/data/com.whatsapp
adb unroot
I've also did this to enable the hardware keyboard.
sqlite3 msgstore.db ".schema --nosys" > ./data/msgstore.db.schema.sql
rm -f ./data/test-database.db && sqlite3 ./data/test-database.db -cmd ".read data/msgstore.db.schema.sql" ".read data/test-database.sql"
- @askeron and @zmeyc for bulk export andreas-mausch#103
- @torsade for crypt14 support andreas-mausch#115
- TripCode for crypt12 support https://github.com/EliteAndroidApps/WhatsApp-Crypt12-Decrypter
- Whatsapp Xtract
- pwncrypt5.py https://github.com/aramosf/pwncrypt5/blob/master/pwncrypt5.py
- SQLite
- MD5 http://bobobobo.wordpress.com/2010/10/17/md5-c-implementation/
- UTF8 http://utfcpp.sourceforge.net/
- AES https://polarssl.org/aes-source-code
- Base64 http://www.adp-gmbh.ch/cpp/common/base64.html
- Zlib http://www.zlib.net/
- RapidJSON http://rapidjson.org/
- mbedtls https://github.com/ARMmbed/mbedtls