2013-10-02 12:59:40 -06:00
|
|
|
#!/usr/bin/env python
|
2015-03-17 01:07:12 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from __future__ import with_statement
|
|
|
|
|
|
|
|
# androidkindlekey.py
|
2015-03-26 01:31:45 -06:00
|
|
|
# Copyright © 2013-15 by Thom and Apprentice Harper
|
|
|
|
# Some portions Copyright © 2010-15 by some_updates and Apprentice Alf
|
2015-03-17 01:07:12 -06:00
|
|
|
#
|
|
|
|
|
|
|
|
# Revision history:
|
2015-03-26 01:31:45 -06:00
|
|
|
# 1.0 - AmazonSecureStorage.xml decryption to serial number
|
|
|
|
# 1.1 - map_data_storage.db decryption to serial number
|
2015-04-13 00:45:43 -06:00
|
|
|
# 1.2 - Changed to be callable from AppleScript by returning only serial number
|
|
|
|
# - and changed name to androidkindlekey.py
|
|
|
|
# - and added in unicode command line support
|
2015-07-29 11:11:19 -06:00
|
|
|
# 1.3 - added in TkInter interface, output to a file
|
|
|
|
# 1.4 - Fix some problems identified by Aldo Bleeker
|
2015-09-03 00:51:10 -06:00
|
|
|
# 1.5 - Fix another problem identified by Aldo Bleeker
|
2015-03-17 01:07:12 -06:00
|
|
|
|
|
|
|
"""
|
|
|
|
Retrieve Kindle for Android Serial Number.
|
|
|
|
"""
|
2019-06-24 10:49:38 -06:00
|
|
|
from __future__ import print_function
|
2015-03-17 01:07:12 -06:00
|
|
|
|
|
|
|
__license__ = 'GPL v3'
|
2015-09-03 00:51:10 -06:00
|
|
|
__version__ = '1.5'
|
2013-10-02 12:59:40 -06:00
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
2015-09-03 00:51:10 -06:00
|
|
|
import traceback
|
2015-03-17 01:07:12 -06:00
|
|
|
import getopt
|
|
|
|
import tempfile
|
2013-10-02 12:59:40 -06:00
|
|
|
import zlib
|
|
|
|
import tarfile
|
|
|
|
from hashlib import md5
|
|
|
|
from cStringIO import StringIO
|
|
|
|
from binascii import a2b_hex, b2a_hex
|
|
|
|
|
2015-03-17 01:07:12 -06:00
|
|
|
# Routines common to Mac and PC
|
|
|
|
|
|
|
|
# Wrap a stream so that output gets flushed immediately
|
|
|
|
# and also make sure that any unicode strings get
|
|
|
|
# encoded using "replace" before writing them.
|
|
|
|
class SafeUnbuffered:
|
|
|
|
def __init__(self, stream):
|
|
|
|
self.stream = stream
|
|
|
|
self.encoding = stream.encoding
|
|
|
|
if self.encoding == None:
|
|
|
|
self.encoding = "utf-8"
|
|
|
|
def write(self, data):
|
|
|
|
if isinstance(data,unicode):
|
|
|
|
data = data.encode(self.encoding,"replace")
|
|
|
|
self.stream.write(data)
|
|
|
|
self.stream.flush()
|
|
|
|
def __getattr__(self, attr):
|
|
|
|
return getattr(self.stream, attr)
|
|
|
|
|
|
|
|
try:
|
|
|
|
from calibre.constants import iswindows, isosx
|
|
|
|
except:
|
|
|
|
iswindows = sys.platform.startswith('win')
|
|
|
|
isosx = sys.platform.startswith('darwin')
|
|
|
|
|
|
|
|
def unicode_argv():
|
|
|
|
if iswindows:
|
|
|
|
# Uses shell32.GetCommandLineArgvW to get sys.argv as a list of Unicode
|
|
|
|
# strings.
|
|
|
|
|
|
|
|
# Versions 2.x of Python don't support Unicode in sys.argv on
|
|
|
|
# Windows, with the underlying Windows API instead replacing multi-byte
|
|
|
|
# characters with '?'. So use shell32.GetCommandLineArgvW to get sys.argv
|
|
|
|
# as a list of Unicode strings and encode them as utf-8
|
|
|
|
|
|
|
|
from ctypes import POINTER, byref, cdll, c_int, windll
|
|
|
|
from ctypes.wintypes import LPCWSTR, LPWSTR
|
|
|
|
|
|
|
|
GetCommandLineW = cdll.kernel32.GetCommandLineW
|
|
|
|
GetCommandLineW.argtypes = []
|
|
|
|
GetCommandLineW.restype = LPCWSTR
|
|
|
|
|
|
|
|
CommandLineToArgvW = windll.shell32.CommandLineToArgvW
|
|
|
|
CommandLineToArgvW.argtypes = [LPCWSTR, POINTER(c_int)]
|
|
|
|
CommandLineToArgvW.restype = POINTER(LPWSTR)
|
|
|
|
|
|
|
|
cmd = GetCommandLineW()
|
|
|
|
argc = c_int(0)
|
|
|
|
argv = CommandLineToArgvW(cmd, byref(argc))
|
|
|
|
if argc.value > 0:
|
|
|
|
# Remove Python executable and commands if present
|
|
|
|
start = argc.value - len(sys.argv)
|
|
|
|
return [argv[i] for i in
|
|
|
|
xrange(start, argc.value)]
|
|
|
|
# if we don't have any arguments at all, just pass back script name
|
|
|
|
# this should never happen
|
|
|
|
return [u"kindlekey.py"]
|
|
|
|
else:
|
|
|
|
argvencoding = sys.stdin.encoding
|
|
|
|
if argvencoding == None:
|
|
|
|
argvencoding = "utf-8"
|
|
|
|
return [arg if (type(arg) == unicode) else unicode(arg,argvencoding) for arg in sys.argv]
|
|
|
|
|
|
|
|
class DrmException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
STORAGE = u"backup.ab"
|
|
|
|
STORAGE1 = u"AmazonSecureStorage.xml"
|
|
|
|
STORAGE2 = u"map_data_storage.db"
|
2013-10-02 12:59:40 -06:00
|
|
|
|
|
|
|
class AndroidObfuscation(object):
|
|
|
|
'''AndroidObfuscation
|
|
|
|
For the key, it's written in java, and run in android dalvikvm
|
|
|
|
'''
|
|
|
|
|
|
|
|
key = a2b_hex('0176e04c9408b1702d90be333fd53523')
|
|
|
|
|
|
|
|
def encrypt(self, plaintext):
|
|
|
|
cipher = self._get_cipher()
|
|
|
|
padding = len(self.key) - len(plaintext) % len(self.key)
|
|
|
|
plaintext += chr(padding) * padding
|
|
|
|
return b2a_hex(cipher.encrypt(plaintext))
|
|
|
|
|
|
|
|
def decrypt(self, ciphertext):
|
|
|
|
cipher = self._get_cipher()
|
|
|
|
plaintext = cipher.decrypt(a2b_hex(ciphertext))
|
|
|
|
return plaintext[:-ord(plaintext[-1])]
|
|
|
|
|
|
|
|
def _get_cipher(self):
|
|
|
|
try:
|
|
|
|
from Crypto.Cipher import AES
|
|
|
|
return AES.new(self.key)
|
|
|
|
except ImportError:
|
|
|
|
from aescbc import AES, noPadding
|
|
|
|
return AES(self.key, padding=noPadding())
|
|
|
|
|
|
|
|
class AndroidObfuscationV2(AndroidObfuscation):
|
|
|
|
'''AndroidObfuscationV2
|
|
|
|
'''
|
|
|
|
|
|
|
|
count = 503
|
|
|
|
password = 'Thomsun was here!'
|
|
|
|
|
|
|
|
def __init__(self, salt):
|
|
|
|
key = self.password + salt
|
|
|
|
for _ in range(self.count):
|
|
|
|
key = md5(key).digest()
|
|
|
|
self.key = key[:8]
|
|
|
|
self.iv = key[8:16]
|
|
|
|
|
|
|
|
def _get_cipher(self):
|
|
|
|
try :
|
|
|
|
from Crypto.Cipher import DES
|
|
|
|
return DES.new(self.key, DES.MODE_CBC, self.iv)
|
|
|
|
except ImportError:
|
|
|
|
from python_des import Des, CBC
|
|
|
|
return Des(self.key, CBC, self.iv)
|
|
|
|
|
|
|
|
def parse_preference(path):
|
|
|
|
''' parse android's shared preference xml '''
|
|
|
|
storage = {}
|
|
|
|
read = open(path)
|
|
|
|
for line in read:
|
|
|
|
line = line.strip()
|
|
|
|
# <string name="key">value</string>
|
|
|
|
if line.startswith('<string name="'):
|
|
|
|
index = line.find('"', 14)
|
|
|
|
key = line[14:index]
|
|
|
|
value = line[index+2:-9]
|
|
|
|
storage[key] = value
|
|
|
|
read.close()
|
|
|
|
return storage
|
|
|
|
|
2015-03-17 01:07:12 -06:00
|
|
|
def get_serials1(path=STORAGE1):
|
2013-10-02 12:59:40 -06:00
|
|
|
''' get serials from android's shared preference xml '''
|
|
|
|
|
|
|
|
if not os.path.isfile(path):
|
|
|
|
return []
|
|
|
|
|
|
|
|
storage = parse_preference(path)
|
|
|
|
salt = storage.get('AmazonSaltKey')
|
|
|
|
if salt and len(salt) == 16:
|
|
|
|
obfuscation = AndroidObfuscationV2(a2b_hex(salt))
|
|
|
|
else:
|
|
|
|
obfuscation = AndroidObfuscation()
|
|
|
|
|
|
|
|
def get_value(key):
|
|
|
|
encrypted_key = obfuscation.encrypt(key)
|
|
|
|
encrypted_value = storage.get(encrypted_key)
|
|
|
|
if encrypted_value:
|
|
|
|
return obfuscation.decrypt(encrypted_value)
|
|
|
|
return ''
|
|
|
|
|
|
|
|
# also see getK4Pids in kgenpids.py
|
|
|
|
try:
|
|
|
|
dsnid = get_value('DsnId')
|
|
|
|
except:
|
|
|
|
sys.stderr.write('cannot get DsnId\n')
|
|
|
|
return []
|
|
|
|
|
|
|
|
try:
|
|
|
|
tokens = set(get_value('kindle.account.tokens').split(','))
|
|
|
|
except:
|
2015-03-09 01:38:31 -06:00
|
|
|
return []
|
2013-10-02 12:59:40 -06:00
|
|
|
|
|
|
|
serials = []
|
2015-07-29 11:11:19 -06:00
|
|
|
if dsnid:
|
|
|
|
serials.append(dsnid)
|
2013-10-02 12:59:40 -06:00
|
|
|
for token in tokens:
|
|
|
|
if token:
|
|
|
|
serials.append('%s%s' % (dsnid, token))
|
2015-07-29 11:11:19 -06:00
|
|
|
serials.append(token)
|
2015-03-09 01:38:31 -06:00
|
|
|
return serials
|
|
|
|
|
|
|
|
def get_serials2(path=STORAGE2):
|
2015-07-29 11:11:19 -06:00
|
|
|
''' get serials from android's sql database '''
|
2015-03-17 01:07:12 -06:00
|
|
|
if not os.path.isfile(path):
|
|
|
|
return []
|
|
|
|
|
2015-03-09 01:38:31 -06:00
|
|
|
import sqlite3
|
|
|
|
connection = sqlite3.connect(path)
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute('''select userdata_value from userdata where userdata_key like '%/%token.device.deviceserialname%' ''')
|
2015-07-29 11:11:19 -06:00
|
|
|
userdata_keys = cursor.fetchall()
|
|
|
|
dsns = []
|
|
|
|
for userdata_row in userdata_keys:
|
2015-09-03 00:51:10 -06:00
|
|
|
try:
|
|
|
|
if userdata_row and userdata_row[0]:
|
|
|
|
userdata_utf8 = userdata_row[0].encode('utf8')
|
|
|
|
if len(userdata_utf8) > 0:
|
|
|
|
dsns.append(userdata_utf8)
|
|
|
|
except:
|
2019-06-24 10:49:38 -06:00
|
|
|
print("Error getting one of the device serial name keys")
|
2015-09-03 00:51:10 -06:00
|
|
|
traceback.print_exc()
|
|
|
|
pass
|
2015-07-29 11:11:19 -06:00
|
|
|
dsns = list(set(dsns))
|
2015-03-09 01:38:31 -06:00
|
|
|
|
|
|
|
cursor.execute('''select userdata_value from userdata where userdata_key like '%/%kindle.account.tokens%' ''')
|
2015-07-29 11:11:19 -06:00
|
|
|
userdata_keys = cursor.fetchall()
|
|
|
|
tokens = []
|
|
|
|
for userdata_row in userdata_keys:
|
2015-09-03 00:51:10 -06:00
|
|
|
try:
|
|
|
|
if userdata_row and userdata_row[0]:
|
|
|
|
userdata_utf8 = userdata_row[0].encode('utf8')
|
|
|
|
if len(userdata_utf8) > 0:
|
|
|
|
tokens.append(userdata_utf8)
|
|
|
|
except:
|
2019-06-24 10:49:38 -06:00
|
|
|
print("Error getting one of the account token keys")
|
2015-09-03 00:51:10 -06:00
|
|
|
traceback.print_exc()
|
|
|
|
pass
|
2015-07-29 11:11:19 -06:00
|
|
|
tokens = list(set(tokens))
|
|
|
|
|
2015-03-09 01:38:31 -06:00
|
|
|
serials = []
|
|
|
|
for x in dsns:
|
2015-07-29 11:11:19 -06:00
|
|
|
serials.append(x)
|
2015-03-09 01:38:31 -06:00
|
|
|
for y in tokens:
|
|
|
|
serials.append('%s%s' % (x, y))
|
2015-07-29 11:11:19 -06:00
|
|
|
for y in tokens:
|
|
|
|
serials.append(y)
|
2013-10-02 12:59:40 -06:00
|
|
|
return serials
|
|
|
|
|
2015-03-17 01:07:12 -06:00
|
|
|
def get_serials(path=STORAGE):
|
|
|
|
'''get serials from files in from android backup.ab
|
2013-10-02 12:59:40 -06:00
|
|
|
backup.ab can be get using adb command:
|
|
|
|
shell> adb backup com.amazon.kindle
|
2015-03-17 01:07:12 -06:00
|
|
|
or from individual files if they're passed.
|
2013-10-02 12:59:40 -06:00
|
|
|
'''
|
2015-03-09 01:38:31 -06:00
|
|
|
if not os.path.isfile(path):
|
2015-03-17 01:07:12 -06:00
|
|
|
return []
|
|
|
|
|
|
|
|
basename = os.path.basename(path)
|
|
|
|
if basename == STORAGE1:
|
|
|
|
return get_serials1(path)
|
|
|
|
elif basename == STORAGE2:
|
|
|
|
return get_serials2(path)
|
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
output = None
|
2015-03-17 01:07:12 -06:00
|
|
|
try :
|
|
|
|
read = open(path, 'rb')
|
|
|
|
head = read.read(24)
|
|
|
|
if head[:14] == 'ANDROID BACKUP':
|
|
|
|
output = StringIO(zlib.decompress(read.read()))
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
finally:
|
|
|
|
read.close()
|
2013-10-02 12:59:40 -06:00
|
|
|
|
|
|
|
if not output:
|
2015-03-09 01:38:31 -06:00
|
|
|
return []
|
2013-10-02 12:59:40 -06:00
|
|
|
|
2015-03-09 01:38:31 -06:00
|
|
|
serials = []
|
2013-10-02 12:59:40 -06:00
|
|
|
tar = tarfile.open(fileobj=output)
|
|
|
|
for member in tar.getmembers():
|
2015-03-17 01:07:12 -06:00
|
|
|
if member.name.strip().endswith(STORAGE1):
|
2015-03-18 13:12:01 -06:00
|
|
|
write = tempfile.NamedTemporaryFile(mode='wb', delete=False)
|
2015-03-09 01:38:31 -06:00
|
|
|
write.write(tar.extractfile(member).read())
|
|
|
|
write.close()
|
2015-03-17 01:07:12 -06:00
|
|
|
write_path = os.path.abspath(write.name)
|
|
|
|
serials.extend(get_serials1(write_path))
|
|
|
|
os.remove(write_path)
|
|
|
|
elif member.name.strip().endswith(STORAGE2):
|
2015-03-18 13:12:01 -06:00
|
|
|
write = tempfile.NamedTemporaryFile(mode='wb', delete=False)
|
2013-10-02 12:59:40 -06:00
|
|
|
write.write(tar.extractfile(member).read())
|
|
|
|
write.close()
|
2015-03-17 01:07:12 -06:00
|
|
|
write_path = os.path.abspath(write.name)
|
|
|
|
serials.extend(get_serials2(write_path))
|
|
|
|
os.remove(write_path)
|
2015-07-29 11:11:19 -06:00
|
|
|
return list(set(serials))
|
2013-10-02 12:59:40 -06:00
|
|
|
|
2015-03-24 01:04:06 -06:00
|
|
|
__all__ = [ 'get_serials', 'getkey']
|
|
|
|
|
2015-07-29 11:11:19 -06:00
|
|
|
# procedure for CLI and GUI interfaces
|
|
|
|
# returns single or multiple keys (one per line) in the specified file
|
|
|
|
def getkey(outfile, inpath):
|
2015-03-24 01:04:06 -06:00
|
|
|
keys = get_serials(inpath)
|
|
|
|
if len(keys) > 0:
|
2015-07-29 11:11:19 -06:00
|
|
|
with file(outfile, 'w') as keyfileout:
|
2015-03-24 01:04:06 -06:00
|
|
|
for key in keys:
|
2015-07-29 11:11:19 -06:00
|
|
|
keyfileout.write(key)
|
|
|
|
keyfileout.write("\n")
|
2015-03-24 01:04:06 -06:00
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2015-03-17 01:07:12 -06:00
|
|
|
|
|
|
|
def usage(progname):
|
2019-06-24 10:49:38 -06:00
|
|
|
print(u"Decrypts the serial number(s) of Kindle For Android from Android backup or file")
|
|
|
|
print(u"Get backup.ab file using adb backup com.amazon.kindle for Android 4.0+.")
|
|
|
|
print(u"Otherwise extract AmazonSecureStorage.xml from /data/data/com.amazon.kindle/shared_prefs/AmazonSecureStorage.xml")
|
|
|
|
print(u"Or map_data_storage.db from /data/data/com.amazon.kindle/databases/map_data_storage.db")
|
|
|
|
print(u"")
|
|
|
|
print(u"Usage:")
|
|
|
|
print(u" {0:s} [-h] [-b <backup.ab>] [<outfile.k4a>]".format(progname))
|
2015-03-17 01:07:12 -06:00
|
|
|
|
|
|
|
|
|
|
|
def cli_main():
|
|
|
|
sys.stdout=SafeUnbuffered(sys.stdout)
|
|
|
|
sys.stderr=SafeUnbuffered(sys.stderr)
|
|
|
|
argv=unicode_argv()
|
|
|
|
progname = os.path.basename(argv[0])
|
2019-06-24 10:49:38 -06:00
|
|
|
print(u"{0} v{1}\nCopyright © 2010-2015 Thom, some_updates, Apprentice Alf and Apprentice Harper".format(progname,__version__))
|
2015-03-17 01:07:12 -06:00
|
|
|
|
|
|
|
try:
|
2015-03-24 01:04:06 -06:00
|
|
|
opts, args = getopt.getopt(argv[1:], "hb:")
|
2015-03-17 01:07:12 -06:00
|
|
|
except getopt.GetoptError, err:
|
|
|
|
usage(progname)
|
2019-06-24 10:49:38 -06:00
|
|
|
print(u"\nError in options or arguments: {0}".format(err.args[0]))
|
2015-03-17 01:07:12 -06:00
|
|
|
return 2
|
|
|
|
|
2015-03-24 01:04:06 -06:00
|
|
|
inpath = ""
|
2015-03-17 01:07:12 -06:00
|
|
|
for o, a in opts:
|
|
|
|
if o == "-h":
|
|
|
|
usage(progname)
|
|
|
|
return 0
|
2015-03-24 01:04:06 -06:00
|
|
|
if o == "-b":
|
|
|
|
inpath = a
|
2015-03-17 01:07:12 -06:00
|
|
|
|
|
|
|
if len(args) > 1:
|
|
|
|
usage(progname)
|
|
|
|
return 2
|
|
|
|
|
2015-03-24 01:04:06 -06:00
|
|
|
if len(args) == 1:
|
|
|
|
# save to the specified file or directory
|
2015-07-29 11:11:19 -06:00
|
|
|
outfile = args[0]
|
|
|
|
if not os.path.isabs(outfile):
|
|
|
|
outfile = os.path.join(os.path.dirname(argv[0]),outfile)
|
|
|
|
outfile = os.path.abspath(outfile)
|
|
|
|
if os.path.isdir(outfile):
|
|
|
|
outfile = os.path.join(os.path.dirname(argv[0]),"androidkindlekey.k4a")
|
2015-03-24 01:04:06 -06:00
|
|
|
else:
|
|
|
|
# save to the same directory as the script
|
2015-07-29 11:11:19 -06:00
|
|
|
outfile = os.path.join(os.path.dirname(argv[0]),"androidkindlekey.k4a")
|
2015-03-17 01:07:12 -06:00
|
|
|
|
2015-03-24 01:04:06 -06:00
|
|
|
# make sure the outpath is OK
|
2015-07-29 11:11:19 -06:00
|
|
|
outfile = os.path.realpath(os.path.normpath(outfile))
|
2015-03-17 01:07:12 -06:00
|
|
|
|
|
|
|
if not os.path.isfile(inpath):
|
|
|
|
usage(progname)
|
2019-06-24 10:49:38 -06:00
|
|
|
print(u"\n{0:s} file not found".format(inpath))
|
2015-03-17 01:07:12 -06:00
|
|
|
return 2
|
|
|
|
|
2015-07-29 11:11:19 -06:00
|
|
|
if getkey(outfile, inpath):
|
2019-06-24 10:49:38 -06:00
|
|
|
print(u"\nSaved Kindle for Android key to {0}".format(outfile))
|
2015-07-29 11:11:19 -06:00
|
|
|
else:
|
2019-06-24 10:49:38 -06:00
|
|
|
print(u"\nCould not retrieve Kindle for Android key.")
|
2015-03-24 01:04:06 -06:00
|
|
|
return 0
|
2015-03-17 01:07:12 -06:00
|
|
|
|
|
|
|
|
2015-03-24 01:04:06 -06:00
|
|
|
def gui_main():
|
|
|
|
try:
|
|
|
|
import Tkinter
|
|
|
|
import Tkconstants
|
|
|
|
import tkMessageBox
|
|
|
|
import tkFileDialog
|
|
|
|
except:
|
2019-06-24 10:49:38 -06:00
|
|
|
print("Tkinter not installed")
|
2015-03-24 01:04:06 -06:00
|
|
|
return cli_main()
|
|
|
|
|
|
|
|
class DecryptionDialog(Tkinter.Frame):
|
|
|
|
def __init__(self, root):
|
|
|
|
Tkinter.Frame.__init__(self, root, border=5)
|
|
|
|
self.status = Tkinter.Label(self, text=u"Select backup.ab file")
|
|
|
|
self.status.pack(fill=Tkconstants.X, expand=1)
|
|
|
|
body = Tkinter.Frame(self)
|
|
|
|
body.pack(fill=Tkconstants.X, expand=1)
|
|
|
|
sticky = Tkconstants.E + Tkconstants.W
|
|
|
|
body.grid_columnconfigure(1, weight=2)
|
|
|
|
Tkinter.Label(body, text=u"Backup file").grid(row=0, column=0)
|
|
|
|
self.keypath = Tkinter.Entry(body, width=40)
|
|
|
|
self.keypath.grid(row=0, column=1, sticky=sticky)
|
|
|
|
self.keypath.insert(2, u"backup.ab")
|
|
|
|
button = Tkinter.Button(body, text=u"...", command=self.get_keypath)
|
|
|
|
button.grid(row=0, column=2)
|
|
|
|
buttons = Tkinter.Frame(self)
|
|
|
|
buttons.pack()
|
|
|
|
button2 = Tkinter.Button(
|
|
|
|
buttons, text=u"Extract", width=10, command=self.generate)
|
|
|
|
button2.pack(side=Tkconstants.LEFT)
|
|
|
|
Tkinter.Frame(buttons, width=10).pack(side=Tkconstants.LEFT)
|
|
|
|
button3 = Tkinter.Button(
|
|
|
|
buttons, text=u"Quit", width=10, command=self.quit)
|
|
|
|
button3.pack(side=Tkconstants.RIGHT)
|
|
|
|
|
|
|
|
def get_keypath(self):
|
|
|
|
keypath = tkFileDialog.askopenfilename(
|
|
|
|
parent=None, title=u"Select backup.ab file",
|
|
|
|
defaultextension=u".ab",
|
|
|
|
filetypes=[('adb backup com.amazon.kindle', '.ab'),
|
|
|
|
('All Files', '.*')])
|
|
|
|
if keypath:
|
|
|
|
keypath = os.path.normpath(keypath)
|
|
|
|
self.keypath.delete(0, Tkconstants.END)
|
|
|
|
self.keypath.insert(0, keypath)
|
|
|
|
return
|
|
|
|
|
|
|
|
def generate(self):
|
|
|
|
inpath = self.keypath.get()
|
|
|
|
self.status['text'] = u"Getting key..."
|
|
|
|
try:
|
|
|
|
keys = get_serials(inpath)
|
|
|
|
keycount = 0
|
|
|
|
for key in keys:
|
|
|
|
while True:
|
|
|
|
keycount += 1
|
|
|
|
outfile = os.path.join(progpath,u"kindlekey{0:d}.k4a".format(keycount))
|
|
|
|
if not os.path.exists(outfile):
|
|
|
|
break
|
|
|
|
|
|
|
|
with file(outfile, 'w') as keyfileout:
|
|
|
|
keyfileout.write(key)
|
|
|
|
success = True
|
|
|
|
tkMessageBox.showinfo(progname, u"Key successfully retrieved to {0}".format(outfile))
|
|
|
|
except Exception, e:
|
|
|
|
self.status['text'] = u"Error: {0}".format(e.args[0])
|
|
|
|
return
|
|
|
|
self.status['text'] = u"Select backup.ab file"
|
|
|
|
|
|
|
|
argv=unicode_argv()
|
|
|
|
progpath, progname = os.path.split(argv[0])
|
|
|
|
root = Tkinter.Tk()
|
|
|
|
root.title(u"Kindle for Android Key Extraction v.{0}".format(__version__))
|
|
|
|
root.resizable(True, False)
|
|
|
|
root.minsize(300, 0)
|
|
|
|
DecryptionDialog(root).pack(fill=Tkconstants.X, expand=1)
|
|
|
|
root.mainloop()
|
2015-03-17 01:07:12 -06:00
|
|
|
return 0
|
2013-10-02 12:59:40 -06:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2015-03-17 01:07:12 -06:00
|
|
|
if len(sys.argv) > 1:
|
|
|
|
sys.exit(cli_main())
|
2015-03-24 01:04:06 -06:00
|
|
|
sys.exit(gui_main())
|