Byte-ul Posted July 31, 2014 Report Posted July 31, 2014 How to Decrypt WhatsApp crypt7 Database Messages:(commands below are run from a linux enviroment)Extract Key File: /data/data/com.whatsapp/files/keyExtract crypt7 file: /sdcard/WhatsApp/Databases/msgstore.db.crypt7Extract Decryption Keys from "key" file extracted in step 1:256-bit AES key:hexdump -e '2/1 "%02x"' key | cut -b 253-316 > aes.txtIV (initialisation vector):hexdump -e '2/1 "%02x"' key | cut -b 221-252 > iv.txtStrip Header in crypt7 File:dd if=msgstore.db.crypt7 of=msgstore.db.crypt7.nohdr ibs=67 skip=1Note: Size of header stripped file in bytes must be divisible by 16Decrypt crypt7 File:openssl enc -aes-256-cbc -d -nosalt -nopad -bufsize 16384 -in msgstore.db.crypt7.nohdr -K $(cat aes.txt) -iv $(cat iv.txt) > msgstore.db 1 Quote
Byte-ul Posted July 31, 2014 Report Posted July 31, 2014 nu am keyul ...Nu ai cum sa decriptezi fara key. Acolo se afla informatiile necesare pentru a decripta AES. Quote