DeDRM_tools/Adobe_EPUB_Tools/ineptkey.pyw

243 lines
8.0 KiB
Python
Raw Normal View History

2009-02-19 18:39:43 +06:00
#! /usr/bin/python
2010-02-17 03:16:03 +06:00
# ineptkey.pyw, version 4.2
2009-02-19 18:39:43 +06:00
# To run this program install Python 2.6 from http://www.python.org/download/
# and PyCrypto from http://www.voidspace.org.uk/python/modules.shtml#pycrypto
# (make sure to install the version for Python 2.6). Save this script file as
2009-09-01 23:02:35 +07:00
# ineptkey.pyw and double-click on it to run it. It will create a file named
2010-02-17 03:16:03 +06:00
# adeptkey4.der in the same directory. These are your ADEPT user keys.
2009-02-19 18:39:43 +06:00
# Revision history:
# 1 - Initial release, for Adobe Digital Editions 1.7
2009-09-01 23:02:35 +07:00
# 2 - Better algorithm for finding pLK; improved error handling
# 3 - Rename to INEPT
2010-02-17 03:16:03 +06:00
# 4.1 - quick beta fix for ADE 1.7.2 (anon)
# 4.2 - multiple key support, added old 1.7.1 processing,
# new adeptkey4.der format (anon)
2009-02-19 18:39:43 +06:00
"""
Retrieve Adobe ADEPT user key under Windows.
"""
from __future__ import with_statement
__license__ = 'GPL v3'
import sys
import os
from struct import pack
from ctypes import windll, c_char_p, c_wchar_p, c_uint, POINTER, byref, \
create_unicode_buffer, create_string_buffer, CFUNCTYPE, addressof, \
string_at, Structure, c_void_p, cast
import _winreg as winreg
import Tkinter
2009-09-01 23:02:35 +07:00
import Tkconstants
2009-02-19 18:39:43 +06:00
import tkMessageBox
2009-09-01 23:02:35 +07:00
import traceback
2010-02-17 03:16:03 +06:00
import hashlib
import pickle
2009-02-19 18:39:43 +06:00
try:
from Crypto.Cipher import AES
except ImportError:
AES = None
DEVICE_KEY = 'Software\\Adobe\\Adept\\Device'
2009-09-01 23:02:35 +07:00
PRIVATE_LICENCE_KEY_KEY = 'Software\\Adobe\\Adept\\Activation\\%04d\\%04d'
2010-02-17 03:16:03 +06:00
ACTIVATION = 'Software\\Adobe\\Adept\\Activation\\'
2009-02-19 18:39:43 +06:00
MAX_PATH = 255
kernel32 = windll.kernel32
advapi32 = windll.advapi32
crypt32 = windll.crypt32
2009-09-01 23:02:35 +07:00
class ADEPTError(Exception):
pass
2009-02-19 18:39:43 +06:00
def GetSystemDirectory():
GetSystemDirectoryW = kernel32.GetSystemDirectoryW
GetSystemDirectoryW.argtypes = [c_wchar_p, c_uint]
GetSystemDirectoryW.restype = c_uint
def GetSystemDirectory():
buffer = create_unicode_buffer(MAX_PATH + 1)
GetSystemDirectoryW(buffer, len(buffer))
return buffer.value
return GetSystemDirectory
GetSystemDirectory = GetSystemDirectory()
def GetVolumeSerialNumber():
GetVolumeInformationW = kernel32.GetVolumeInformationW
GetVolumeInformationW.argtypes = [c_wchar_p, c_wchar_p, c_uint,
POINTER(c_uint), POINTER(c_uint),
POINTER(c_uint), c_wchar_p, c_uint]
GetVolumeInformationW.restype = c_uint
def GetVolumeSerialNumber(path):
vsn = c_uint(0)
GetVolumeInformationW(path, None, 0, byref(vsn), None, None, None, 0)
return vsn.value
return GetVolumeSerialNumber
GetVolumeSerialNumber = GetVolumeSerialNumber()
def GetUserName():
GetUserNameW = advapi32.GetUserNameW
GetUserNameW.argtypes = [c_wchar_p, POINTER(c_uint)]
GetUserNameW.restype = c_uint
def GetUserName():
buffer = create_unicode_buffer(32)
size = c_uint(len(buffer))
while not GetUserNameW(buffer, byref(size)):
buffer = create_unicode_buffer(len(buffer) * 2)
size.value = len(buffer)
return buffer.value.encode('utf-16-le')[::2]
return GetUserName
GetUserName = GetUserName()
CPUID0_INSNS = create_string_buffer("\x53\x31\xc0\x0f\xa2\x8b\x44\x24\x08\x89"
"\x18\x89\x50\x04\x89\x48\x08\x5b\xc3")
def cpuid0():
buffer = create_string_buffer(12)
cpuid0__ = CFUNCTYPE(c_char_p)(addressof(CPUID0_INSNS))
def cpuid0():
cpuid0__(buffer)
return buffer.raw
return cpuid0
cpuid0 = cpuid0()
CPUID1_INSNS = create_string_buffer("\x53\x31\xc0\x40\x0f\xa2\x5b\xc3")
cpuid1 = CFUNCTYPE(c_uint)(addressof(CPUID1_INSNS))
class DataBlob(Structure):
_fields_ = [('cbData', c_uint),
('pbData', c_void_p)]
DataBlob_p = POINTER(DataBlob)
def CryptUnprotectData():
_CryptUnprotectData = crypt32.CryptUnprotectData
_CryptUnprotectData.argtypes = [DataBlob_p, c_wchar_p, DataBlob_p,
c_void_p, c_void_p, c_uint, DataBlob_p]
_CryptUnprotectData.restype = c_uint
def CryptUnprotectData(indata, entropy):
indatab = create_string_buffer(indata)
indata = DataBlob(len(indata), cast(indatab, c_void_p))
entropyb = create_string_buffer(entropy)
entropy = DataBlob(len(entropy), cast(entropyb, c_void_p))
outdata = DataBlob()
if not _CryptUnprotectData(byref(indata), None, byref(entropy),
None, None, 0, byref(outdata)):
2009-09-01 23:02:35 +07:00
raise ADEPTError("Failed to decrypt user key key (sic)")
2009-02-19 18:39:43 +06:00
return string_at(outdata.pbData, outdata.cbData)
return CryptUnprotectData
CryptUnprotectData = CryptUnprotectData()
def retrieve_key(keypath):
root = GetSystemDirectory().split('\\')[0] + '\\'
serial = GetVolumeSerialNumber(root)
vendor = cpuid0()
signature = pack('>I', cpuid1())[1:]
user = GetUserName()
entropy = pack('>I12s3s13s', serial, vendor, signature, user)
cuser = winreg.HKEY_CURRENT_USER
2009-09-01 23:02:35 +07:00
try:
regkey = winreg.OpenKey(cuser, DEVICE_KEY)
except WindowsError:
raise ADEPTError("Adobe Digital Editions not activated")
2009-02-19 18:39:43 +06:00
device = winreg.QueryValueEx(regkey, 'key')[0]
keykey = CryptUnprotectData(device, entropy)
2009-09-01 23:02:35 +07:00
userkey = None
2010-02-13 20:04:31 +06:00
pkcs = None
2010-02-17 03:16:03 +06:00
keys = {}
counter = 0
for i in xrange(0, 16):
2010-02-13 20:04:31 +06:00
for j in xrange(0, 16):
plkkey = PRIVATE_LICENCE_KEY_KEY % (i, j)
try:
2010-02-17 03:16:03 +06:00
regkey = winreg.OpenKey(cuser, plkkey)
2010-02-13 20:04:31 +06:00
except WindowsError:
break
2010-02-17 03:16:03 +06:00
type = winreg.QueryValueEx(regkey, None)[0]
if type != 'privateLicenseKey':
2010-02-13 20:04:31 +06:00
continue
2010-02-17 03:16:03 +06:00
userkey = winreg.QueryValueEx(regkey, 'value')[0]
L = []
L.append(userkey)
keys[i] = L
2009-09-01 23:02:35 +07:00
for j in xrange(0, 16):
plkkey = PRIVATE_LICENCE_KEY_KEY % (i, j)
try:
2010-02-17 03:16:03 +06:00
pkcs = winreg.OpenKey(cuser, plkkey)
2009-09-01 23:02:35 +07:00
except WindowsError:
break
2010-02-17 03:16:03 +06:00
type = winreg.QueryValueEx(pkcs, None)[0]
if type != 'pkcs12':
2009-09-01 23:02:35 +07:00
continue
2010-02-17 03:16:03 +06:00
pkcs = winreg.QueryValueEx(pkcs, 'value')[0]
keys[i].append(pkcs)
counter = counter + 1
if pkcs is None:
2010-02-13 20:04:31 +06:00
raise ADEPTError('Could not locate PKCS specification')
2009-09-01 23:02:35 +07:00
if userkey is None:
raise ADEPTError('Could not locate privateLicenseKey')
2010-02-17 03:16:03 +06:00
userkeyw = []
print counter
for key in keys:
pkcs = keys[key][1].decode('base64')
userkey = keys[key][0].decode('base64')
userkey = AES.new(keykey, AES.MODE_CBC).decrypt(userkey)
userkeyw.append(userkey[26:-ord(userkey[-1])])
2009-02-19 18:39:43 +06:00
with open(keypath, 'wb') as f:
2010-02-17 03:16:03 +06:00
pickle.dump(userkeyw,f)
2009-02-19 18:39:43 +06:00
return
2009-09-01 23:02:35 +07:00
class ExceptionDialog(Tkinter.Frame):
def __init__(self, root, text):
Tkinter.Frame.__init__(self, root, border=5)
label = Tkinter.Label(self, text="Unexpected error:",
anchor=Tkconstants.W, justify=Tkconstants.LEFT)
label.pack(fill=Tkconstants.X, expand=0)
self.text = Tkinter.Text(self)
self.text.pack(fill=Tkconstants.BOTH, expand=1)
self.text.insert(Tkconstants.END, text)
2009-02-19 18:39:43 +06:00
def main(argv=sys.argv):
root = Tkinter.Tk()
root.withdraw()
progname = os.path.basename(argv[0])
if AES is None:
tkMessageBox.showerror(
"ADEPT Key",
"This script requires PyCrypto, which must be installed "
"separately. Read the top-of-script comment for details.")
return 1
2010-02-17 03:16:03 +06:00
keypath = 'adeptkey4.der'
2009-02-19 18:39:43 +06:00
try:
retrieve_key(keypath)
2009-09-01 23:02:35 +07:00
except ADEPTError, e:
2009-02-19 18:39:43 +06:00
tkMessageBox.showerror("ADEPT Key", "Error: " + str(e))
return 1
2009-09-01 23:02:35 +07:00
except Exception:
root.wm_state('normal')
root.title('ADEPT Key')
text = traceback.format_exc()
ExceptionDialog(root, text).pack(fill=Tkconstants.BOTH, expand=1)
root.mainloop()
return 1
2009-02-19 18:39:43 +06:00
tkMessageBox.showinfo(
"ADEPT Key", "Key successfully retrieved to %s" % (keypath))
return 0
if __name__ == '__main__':
sys.exit(main())