2020-09-27 04:54:49 -06:00
|
|
|
#!/usr/bin/env python3
|
2015-03-17 01:07:12 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# androidkindlekey.py
|
2022-02-22 16:16:03 -07:00
|
|
|
# Copyright © 2010-22 by Thom, Apprentice Harper et al.
|
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
|
2020-09-27 04:54:49 -06:00
|
|
|
# 2.0 - Python 3 compatibility
|
2022-02-22 16:16:03 -07:00
|
|
|
# 2.1 - Remove OpenSSL support; only support PyCryptodome
|
2015-03-17 01:07:12 -06:00
|
|
|
|
|
|
|
"""
|
|
|
|
Retrieve Kindle for Android Serial Number.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__license__ = 'GPL v3'
|
2022-02-22 16:16:03 -07:00
|
|
|
__version__ = '2.1'
|
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
|
2020-11-27 08:46:06 -07:00
|
|
|
from io import BytesIO
|
2013-10-02 12:59:40 -06:00
|
|
|
from binascii import a2b_hex, b2a_hex
|
|
|
|
|
2022-02-22 16:16:03 -07:00
|
|
|
try:
|
|
|
|
from Cryptodome.Cipher import AES, DES
|
|
|
|
except ImportError:
|
|
|
|
from Crypto.Cipher import AES, DES
|
|
|
|
|
2015-03-17 01:07:12 -06:00
|
|
|
# Routines common to Mac and PC
|
|
|
|
|
|
|
|
|
|
|
|
class DrmException(Exception):
|
|
|
|
pass
|
|
|
|
|
2020-09-27 04:54:49 -06:00
|
|
|
STORAGE = "backup.ab"
|
|
|
|
STORAGE1 = "AmazonSecureStorage.xml"
|
|
|
|
STORAGE2 = "map_data_storage.db"
|
2013-10-02 12:59:40 -06:00
|
|
|
|
2022-03-19 03:14:45 -06:00
|
|
|
|
|
|
|
def unpad(data, padding=16):
|
|
|
|
if sys.version_info[0] == 2:
|
|
|
|
pad_len = ord(data[-1])
|
|
|
|
else:
|
|
|
|
pad_len = data[-1]
|
|
|
|
|
|
|
|
return data[:-pad_len]
|
|
|
|
|
|
|
|
def pad(data, padding_len=16):
|
|
|
|
padding_data_len = padding_len - (len(data) % padding_len)
|
|
|
|
plaintext = data + chr(padding_data_len) * padding_data_len
|
|
|
|
return plaintext
|
|
|
|
|
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')
|
|
|
|
|
2022-02-22 16:16:03 -07:00
|
|
|
def _get_cipher(self):
|
|
|
|
return AES.new(self.key, AES.MODE_ECB)
|
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
def encrypt(self, plaintext):
|
2022-02-22 16:16:03 -07:00
|
|
|
pt = pad(plaintext.encode('utf-8'), 16)
|
|
|
|
return b2a_hex(self._get_cipher().encrypt(pt))
|
2013-10-02 12:59:40 -06:00
|
|
|
|
|
|
|
def decrypt(self, ciphertext):
|
2022-02-22 16:16:03 -07:00
|
|
|
ct = a2b_hex(ciphertext)
|
|
|
|
return unpad(self._get_cipher().decrypt(ct), 16)
|
2013-10-02 12:59:40 -06:00
|
|
|
|
|
|
|
class AndroidObfuscationV2(AndroidObfuscation):
|
|
|
|
'''AndroidObfuscationV2
|
|
|
|
'''
|
|
|
|
|
|
|
|
count = 503
|
2020-11-22 08:03:45 -07:00
|
|
|
password = b'Thomsun was here!'
|
2013-10-02 12:59:40 -06:00
|
|
|
|
|
|
|
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):
|
2022-02-22 16:16:03 -07:00
|
|
|
return DES.new(self.key, DES.MODE_CBC, self.iv)
|
2013-10-02 12:59:40 -06:00
|
|
|
|
|
|
|
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):
|
2020-11-27 08:46:06 -07:00
|
|
|
encrypted_key = obfuscation.encrypt(key)
|
2013-10-02 12:59:40 -06:00
|
|
|
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:
|
2020-11-27 08:46:06 -07:00
|
|
|
sys.stderr.write('cannot get kindle account tokens\n')
|
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()
|
2020-11-22 08:03:45 -07:00
|
|
|
cursor.execute('''select device_data_value from device_data where device_data_key like '%serial.number%' ''')
|
|
|
|
device_data_keys = cursor.fetchall()
|
2015-07-29 11:11:19 -06:00
|
|
|
dsns = []
|
2020-11-22 08:03:45 -07:00
|
|
|
for device_data_row in device_data_keys:
|
2015-09-03 00:51:10 -06:00
|
|
|
try:
|
2020-11-22 08:03:45 -07:00
|
|
|
if device_data_row and device_data_row[0]:
|
|
|
|
if len(device_data_row[0]) > 0:
|
|
|
|
dsns.append(device_data_row[0])
|
2015-09-03 00:51:10 -06:00
|
|
|
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]:
|
2020-11-22 08:03:45 -07:00
|
|
|
if len(userdata_row[0]) > 0:
|
|
|
|
if ',' in userdata_row[0]:
|
|
|
|
splits = userdata_row[0].split(',')
|
|
|
|
for split in splits:
|
|
|
|
tokens.append(split)
|
|
|
|
tokens.append(userdata_row[0])
|
2015-09-03 00:51:10 -06:00
|
|
|
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))
|
2020-09-26 14:22:47 -06:00
|
|
|
|
2015-03-09 01:38:31 -06:00
|
|
|
serials = []
|
|
|
|
for x in dsns:
|
2020-11-27 08:46:06 -07:00
|
|
|
serials.append(x)
|
2015-03-09 01:38:31 -06:00
|
|
|
for y in tokens:
|
2020-11-22 08:03:45 -07:00
|
|
|
serials.append(y)
|
|
|
|
serials.append(x+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)
|
2020-11-22 08:03:45 -07:00
|
|
|
if head[:14] == b'ANDROID BACKUP':
|
2020-11-27 08:46:06 -07:00
|
|
|
output = BytesIO(zlib.decompress(read.read()))
|
2015-03-17 01:07:12 -06:00
|
|
|
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:
|
2020-09-26 14:22:47 -06:00
|
|
|
with open(outfile, 'w') as keyfileout:
|
2015-03-24 01:04:06 -06:00
|
|
|
for key in keys:
|
2020-11-27 08:46:06 -07:00
|
|
|
keyfileout.write(key)
|
2015-07-29 11:11:19 -06:00
|
|
|
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):
|
2020-09-27 04:54:49 -06:00
|
|
|
print("Decrypts the serial number(s) of Kindle For Android from Android backup or file")
|
|
|
|
print("Get backup.ab file using adb backup com.amazon.kindle for Android 4.0+.")
|
|
|
|
print("Otherwise extract AmazonSecureStorage.xml from /data/data/com.amazon.kindle/shared_prefs/AmazonSecureStorage.xml")
|
|
|
|
print("Or map_data_storage.db from /data/data/com.amazon.kindle/databases/map_data_storage.db")
|
2020-10-14 09:23:49 -06:00
|
|
|
print("")
|
2020-09-27 04:54:49 -06:00
|
|
|
print("Usage:")
|
|
|
|
print(" {0:s} [-h] [-b <backup.ab>] [<outfile.k4a>]".format(progname))
|
2015-03-17 01:07:12 -06:00
|
|
|
|
|
|
|
|
|
|
|
def cli_main():
|
2022-08-06 12:19:18 -06:00
|
|
|
argv=sys.argv
|
2015-03-17 01:07:12 -06:00
|
|
|
progname = os.path.basename(argv[0])
|
2020-10-04 13:36:12 -06:00
|
|
|
print("{0} v{1}\nCopyright © 2010-2020 Thom, Apprentice Harper et al.".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:")
|
2020-09-26 14:22:47 -06:00
|
|
|
except getopt.GetoptError as err:
|
2015-03-17 01:07:12 -06:00
|
|
|
usage(progname)
|
2020-09-27 04:54:49 -06:00
|
|
|
print("\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)
|
2020-09-27 04:54:49 -06:00
|
|
|
print("\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):
|
2020-09-27 04:54:49 -06:00
|
|
|
print("\nSaved Kindle for Android key to {0}".format(outfile))
|
2015-07-29 11:11:19 -06:00
|
|
|
else:
|
2020-09-27 04:54:49 -06:00
|
|
|
print("\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:
|
2020-10-04 13:36:12 -06:00
|
|
|
import tkinter
|
|
|
|
import tkinter.constants
|
|
|
|
import tkinter.messagebox
|
|
|
|
import tkinter.filedialog
|
2015-03-24 01:04:06 -06:00
|
|
|
except:
|
2020-10-04 13:36:12 -06:00
|
|
|
print("tkinter not installed")
|
2020-11-27 08:46:06 -07:00
|
|
|
return 0
|
2015-03-24 01:04:06 -06:00
|
|
|
|
2020-10-04 13:36:12 -06:00
|
|
|
class DecryptionDialog(tkinter.Frame):
|
2015-03-24 01:04:06 -06:00
|
|
|
def __init__(self, root):
|
2020-10-04 13:36:12 -06:00
|
|
|
tkinter.Frame.__init__(self, root, border=5)
|
|
|
|
self.status = tkinter.Label(self, text="Select backup.ab file")
|
|
|
|
self.status.pack(fill=tkinter.constants.X, expand=1)
|
|
|
|
body = tkinter.Frame(self)
|
|
|
|
body.pack(fill=tkinter.constants.X, expand=1)
|
|
|
|
sticky = tkinter.constants.E + tkinter.constants.W
|
2015-03-24 01:04:06 -06:00
|
|
|
body.grid_columnconfigure(1, weight=2)
|
2020-10-04 13:36:12 -06:00
|
|
|
tkinter.Label(body, text="Backup file").grid(row=0, column=0)
|
|
|
|
self.keypath = tkinter.Entry(body, width=40)
|
2015-03-24 01:04:06 -06:00
|
|
|
self.keypath.grid(row=0, column=1, sticky=sticky)
|
2020-09-27 04:54:49 -06:00
|
|
|
self.keypath.insert(2, "backup.ab")
|
2020-10-04 13:36:12 -06:00
|
|
|
button = tkinter.Button(body, text="...", command=self.get_keypath)
|
2015-03-24 01:04:06 -06:00
|
|
|
button.grid(row=0, column=2)
|
2020-10-04 13:36:12 -06:00
|
|
|
buttons = tkinter.Frame(self)
|
2015-03-24 01:04:06 -06:00
|
|
|
buttons.pack()
|
2020-10-04 13:36:12 -06:00
|
|
|
button2 = tkinter.Button(
|
2020-09-27 04:54:49 -06:00
|
|
|
buttons, text="Extract", width=10, command=self.generate)
|
2020-10-04 13:36:12 -06:00
|
|
|
button2.pack(side=tkinter.constants.LEFT)
|
|
|
|
tkinter.Frame(buttons, width=10).pack(side=tkinter.constants.LEFT)
|
|
|
|
button3 = tkinter.Button(
|
2020-09-27 04:54:49 -06:00
|
|
|
buttons, text="Quit", width=10, command=self.quit)
|
2020-10-04 13:36:12 -06:00
|
|
|
button3.pack(side=tkinter.constants.RIGHT)
|
2015-03-24 01:04:06 -06:00
|
|
|
|
|
|
|
def get_keypath(self):
|
2020-10-04 13:36:12 -06:00
|
|
|
keypath = tkinter.filedialog.askopenfilename(
|
2020-09-27 04:54:49 -06:00
|
|
|
parent=None, title="Select backup.ab file",
|
|
|
|
defaultextension=".ab",
|
2015-03-24 01:04:06 -06:00
|
|
|
filetypes=[('adb backup com.amazon.kindle', '.ab'),
|
|
|
|
('All Files', '.*')])
|
|
|
|
if keypath:
|
|
|
|
keypath = os.path.normpath(keypath)
|
2020-10-04 13:36:12 -06:00
|
|
|
self.keypath.delete(0, tkinter.constants.END)
|
2015-03-24 01:04:06 -06:00
|
|
|
self.keypath.insert(0, keypath)
|
|
|
|
return
|
|
|
|
|
|
|
|
def generate(self):
|
|
|
|
inpath = self.keypath.get()
|
2020-09-27 04:54:49 -06:00
|
|
|
self.status['text'] = "Getting key..."
|
2015-03-24 01:04:06 -06:00
|
|
|
try:
|
|
|
|
keys = get_serials(inpath)
|
|
|
|
keycount = 0
|
|
|
|
for key in keys:
|
|
|
|
while True:
|
|
|
|
keycount += 1
|
2020-09-27 04:54:49 -06:00
|
|
|
outfile = os.path.join(progpath,"kindlekey{0:d}.k4a".format(keycount))
|
2015-03-24 01:04:06 -06:00
|
|
|
if not os.path.exists(outfile):
|
|
|
|
break
|
|
|
|
|
2020-09-26 14:22:47 -06:00
|
|
|
with open(outfile, 'w') as keyfileout:
|
2015-03-24 01:04:06 -06:00
|
|
|
keyfileout.write(key)
|
|
|
|
success = True
|
2020-10-04 13:36:12 -06:00
|
|
|
tkinter.messagebox.showinfo(progname, "Key successfully retrieved to {0}".format(outfile))
|
2020-09-26 14:22:47 -06:00
|
|
|
except Exception as e:
|
2020-09-27 04:54:49 -06:00
|
|
|
self.status['text'] = "Error: {0}".format(e.args[0])
|
2015-03-24 01:04:06 -06:00
|
|
|
return
|
2020-09-27 04:54:49 -06:00
|
|
|
self.status['text'] = "Select backup.ab file"
|
2015-03-24 01:04:06 -06:00
|
|
|
|
|
|
|
argv=unicode_argv()
|
|
|
|
progpath, progname = os.path.split(argv[0])
|
2020-10-04 13:36:12 -06:00
|
|
|
root = tkinter.Tk()
|
2020-09-27 04:54:49 -06:00
|
|
|
root.title("Kindle for Android Key Extraction v.{0}".format(__version__))
|
2015-03-24 01:04:06 -06:00
|
|
|
root.resizable(True, False)
|
|
|
|
root.minsize(300, 0)
|
2020-10-04 13:36:12 -06:00
|
|
|
DecryptionDialog(root).pack(fill=tkinter.constants.X, expand=1)
|
2015-03-24 01:04:06 -06:00
|
|
|
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())
|