Advertisement
Guest User

Untitled

a guest
Apr 15th, 2015
7,320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Purpose: Decrypting WhatsApp crypt8 >= v2.12.38
  2. By: TripCode
  3. Date: 15th April 2015
  4.  
  5. How To:
  6.  
  7. hexdump -e '2/1 "%02x"' key | cut -b 253-316 > aes.txt
  8. hexdump -n 67 -e '2/1 "%02x"' msgstore.db.crypt8 | cut -b 103-134 > iv.txt
  9. dd if=msgstore.db.crypt8 of=msgstore.db.crypt8.nohdr ibs=67 skip=1
  10. openssl enc -aes-256-cbc -d -nosalt -nopad -bufsize 16384 -in msgstore.db.crypt8.nohdr -K $(cat aes.txt) -iv $(cat iv.txt) > msgstore.gz
  11. gzip -cdq msgstore.gz > msgstore.db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement