56 lines
1.7 KiB
Python
Executable File
56 lines
1.7 KiB
Python
Executable File
#!/usr/bin/env python2
|
|
# -*- coding: UTF-8 -*-
|
|
# File: decrypt-db.py
|
|
# Author: Yuxin Wu <[email protected]>
|
|
|
|
from argparse import ArgumentParser
|
|
from pysqlcipher import dbapi2 as sqlite
|
|
|
|
from hashlib import md5
|
|
import sys
|
|
import os
|
|
|
|
DEFAULT_OUTPUT_DB_NAME = 'decrypted.db'
|
|
def get_args():
|
|
parser = ArgumentParser()
|
|
parser.add_argument('db', help='path to EnMicroMsg.db')
|
|
parser.add_argument('imei', help='15 digit IMEI of your phone')
|
|
parser.add_argument('uin', help='WeChat UIN')
|
|
parser.add_argument('--output', help='output decrypted database',
|
|
default=DEFAULT_OUTPUT_DB_NAME)
|
|
args = parser.parse_args()
|
|
return args
|
|
|
|
def get_key(imei, uin):
|
|
a = md5(imei + uin)
|
|
return a.hexdigest()[:7]
|
|
|
|
if __name__ == '__main__':
|
|
args = get_args()
|
|
|
|
output = args.output
|
|
if os.path.abspath(os.path.dirname(output)) != os.path.abspath('.'):
|
|
print "Output file must be in current directory"
|
|
sys.exit(1)
|
|
if os.path.isfile(output):
|
|
print "{} already exists. Remove? (y/n)".format(args.output),
|
|
ans = raw_input()
|
|
if ans not in ['y', 'Y']:
|
|
print "Bye!"
|
|
sys.exit()
|
|
os.unlink(output)
|
|
|
|
key = get_key(args.imei, args.uin)
|
|
print "KEY: {}".format(key)
|
|
|
|
print "Decrypt and dump database to {} ... ".format(output)
|
|
conn = sqlite.connect(args.db)
|
|
c = conn.cursor()
|
|
c.execute("PRAGMA key = '" + key + "';")
|
|
# https://github.com/sqlcipher/sqlcipher/commit/e4b66d6cc8a2b7547a32ff2c3ac52f148eba3516
|
|
c.execute("PRAGMA cipher_compatibility = 1;")
|
|
c.execute("ATTACH DATABASE '" + args.output + "' AS db KEY '';")
|
|
c.execute("SELECT sqlcipher_export('db');" )
|
|
c.execute("DETACH DATABASE db;" )
|
|
c.close()
|