ineptkey 4.3

This commit is contained in:
Anonymous 2015-02-17 23:50:47 +00:00 committed by Apprentice Alf
parent a73fbbb484
commit 446d45da6b

View File

@ -1,20 +1,21 @@
#! /usr/bin/python #! /usr/bin/python
# ineptkey.pyw, version 4.2 # ineptkey.pyw, version 4.3
# To run this program install Python 2.6 from http://www.python.org/download/ # 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 # 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 # (make sure to install the version for Python 2.6). Save this script file as
# ineptkey.pyw and double-click on it to run it. It will create a file named # ineptkey.pyw and double-click on it to run it. It will create a file named
# adeptkey4.der in the same directory. These are your ADEPT user keys. # adeptkey.der in the same directory. These are your ADEPT user keys.
# Revision history: # Revision history:
# 1 - Initial release, for Adobe Digital Editions 1.7 # 1 - Initial release, for Adobe Digital Editions 1.7
# 2 - Better algorithm for finding pLK; improved error handling # 2 - Better algorithm for finding pLK; improved error handling
# 3 - Rename to INEPT # 3 - Rename to INEPT
# 4.1 - quick beta fix for ADE 1.7.2 (anon) # 4.1 - quick beta fix for ADE 1.7.2 (anon)
# 4.2 - multiple key support, added old 1.7.1 processing, # 4.2 - added old 1.7.1 processing
# new adeptkey4.der format (anon) # 4.3 - better key search
""" """
Retrieve Adobe ADEPT user key under Windows. Retrieve Adobe ADEPT user key under Windows.
@ -46,6 +47,7 @@ except ImportError:
DEVICE_KEY = 'Software\\Adobe\\Adept\\Device' DEVICE_KEY = 'Software\\Adobe\\Adept\\Device'
PRIVATE_LICENCE_KEY = 'Software\\Adobe\\Adept\\Activation\\%04d'
PRIVATE_LICENCE_KEY_KEY = 'Software\\Adobe\\Adept\\Activation\\%04d\\%04d' PRIVATE_LICENCE_KEY_KEY = 'Software\\Adobe\\Adept\\Activation\\%04d\\%04d'
ACTIVATION = 'Software\\Adobe\\Adept\\Activation\\' ACTIVATION = 'Software\\Adobe\\Adept\\Activation\\'
@ -160,44 +162,46 @@ def retrieve_key(keypath):
keys = {} keys = {}
counter = 0 counter = 0
for i in xrange(0, 16): for i in xrange(0, 16):
skey = PRIVATE_LICENCE_KEY % i
try:
regkey = winreg.OpenKey(cuser, skey)
except WindowsError:
break
type = winreg.QueryValueEx(regkey, None)[0]
# obfuscation technique
if type != 'credentials':
continue
for j in xrange(0, 16): for j in xrange(0, 16):
plkkey = PRIVATE_LICENCE_KEY_KEY % (i, j) plkkey = PRIVATE_LICENCE_KEY_KEY % (i, j)
try: try:
regkey = winreg.OpenKey(cuser, plkkey) regkey = winreg.OpenKey(cuser, plkkey)
except WindowsError: except WindowsError:
break break
type = winreg.QueryValueEx(regkey, None)[0] type = winreg.QueryValueEx(regkey, None)[0]
if type != 'privateLicenseKey': if type != 'privateLicenseKey':
continue continue
userkey = winreg.QueryValueEx(regkey, 'value')[0] userkey = winreg.QueryValueEx(regkey, 'value')[0]
L = [] break
L.append(userkey)
keys[i] = L
for j in xrange(0, 16): for j in xrange(0, 16):
plkkey = PRIVATE_LICENCE_KEY_KEY % (i, j) plkkey = PRIVATE_LICENCE_KEY_KEY % (i, j)
try: try:
pkcs = winreg.OpenKey(cuser, plkkey) pkcs = winreg.OpenKey(cuser, plkkey)
except WindowsError: except WindowsError:
break break
type = winreg.QueryValueEx(pkcs, None)[0] type = winreg.QueryValueEx(pkcs, None)[0]
if type != 'pkcs12': if type != 'pkcs12':
continue continue
pkcs = winreg.QueryValueEx(pkcs, 'value')[0] pkcs = winreg.QueryValueEx(pkcs, 'value')[0]
keys[i].append(pkcs) break
counter = counter + 1
if pkcs is None: if pkcs is None:
raise ADEPTError('Could not locate PKCS specification') raise ADEPTError('Could not locate PKCS specification')
if userkey is None: if userkey is None:
raise ADEPTError('Could not locate privateLicenseKey') raise ADEPTError('Could not locate privateLicenseKey')
userkeyw = [] userkey = userkey.decode('base64')
print counter userkey = AES.new(keykey, AES.MODE_CBC).decrypt(userkey)
for key in keys: userkey = userkey[26:-ord(userkey[-1])]
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])])
with open(keypath, 'wb') as f: with open(keypath, 'wb') as f:
pickle.dump(userkeyw,f) f.write(userkey)
return return
class ExceptionDialog(Tkinter.Frame): class ExceptionDialog(Tkinter.Frame):
@ -221,7 +225,7 @@ def main(argv=sys.argv):
"This script requires PyCrypto, which must be installed " "This script requires PyCrypto, which must be installed "
"separately. Read the top-of-script comment for details.") "separately. Read the top-of-script comment for details.")
return 1 return 1
keypath = 'adeptkey4.der' keypath = 'adeptkey.der'
try: try:
retrieve_key(keypath) retrieve_key(keypath)
except ADEPTError, e: except ADEPTError, e: