Advertisement
Guest User

Untitled

a guest
Mar 4th, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #!/usr/bin/python
  2.  
  3. from Crypto.Cipher import AES
  4. import scrypt
  5. from pybitcointools import *
  6. import binascii
  7. import time
  8. import itertools
  9.  
  10. alphabet = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
  11.  
  12.  
  13. if bytes == str: # python2
  14. iseq = lambda s: map(ord, s)
  15. bseq = lambda s: ''.join(map(chr, s))
  16. buffer = lambda s: s
  17.  
  18. def b58decode(v):
  19. ## https://pypi.python.org/pypi/base58/
  20. '''Decode a Base58 encoded string'''
  21.  
  22. if not isinstance(v, str):
  23. v = v.decode('ascii')
  24.  
  25. origlen = len(v)
  26. v = v.lstrip(alphabet[0])
  27. newlen = len(v)
  28.  
  29. p, acc = 1, 0
  30. for c in v[::-1]:
  31. acc += p * alphabet.index(c)
  32. p *= 58
  33.  
  34. result = []
  35. while acc >= 256:
  36. acc, mod = divmod(acc, 256)
  37. result.append(mod)
  38. result.append(acc)
  39.  
  40. return (bseq(result) + b'\0' * (origlen - newlen))[::-1]
  41.  
  42. def bip38_decrypt(passphrase):
  43. ## https://github.com/nomorecoin/python-bip38-testing/blob/master/bip38.py
  44. '''BIP0038 non-ec-multiply decryption. Returns WIF privkey.'''
  45. d = b58decode("6PfQoEzqbz3i2LpHibYnwAspwBwa3Nei1rU7UH9yzfutXT7tyUzV8aYAvG")
  46. d = d[2:]
  47. flagbyte = d[0:1]
  48. d = d[1:]
  49. compressed = False
  50. addresshash = d[0:4]
  51. d = d[4:-4]
  52. key = scrypt.hash(passphrase, addresshash, N=16384, r=8, p=8)
  53. derivedhalf1 = key[0:32]
  54. derivedhalf2 = key[32:64]
  55. encryptedhalf1 = d[0:16]
  56. encryptedhalf2 = d[16:32]
  57. aes = AES.new(derivedhalf2)
  58. decryptedhalf2 = aes.decrypt(encryptedhalf2)
  59. decryptedhalf1 = aes.decrypt(encryptedhalf1)
  60. priv = decryptedhalf1 + decryptedhalf2
  61. priv = binascii.unhexlify('%064x' % (long(binascii.hexlify(priv), 16) ^ long(binascii.hexlify(derivedhalf1), 16)))
  62. pub = privtopub(priv)
  63. if compressed:
  64. pub = encode_pubkey(pub, 'hex_compressed')
  65. wif = encode_privkey(priv, 'wif_compressed')
  66. else:
  67. wif = encode_privkey(priv, 'wif')
  68. addr = pubtoaddr(pub)
  69. if hashlib.sha256(hashlib.sha256(addr).digest()).digest()[0:4] == addresshash:
  70. print wif
  71. return wif
  72.  
  73. ## ASCII range (if the key is encrypted with UTF-8, it's not worth trying).
  74. your_list = '\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff'
  75. gen = itertools.combinations_with_replacement(your_list, 4)
  76.  
  77. def test():
  78. for password in gen:
  79. bip38_decrypt(password[0]+password[1]+password[2]+password[3])
  80.  
  81. import thread
  82.  
  83. thread.start_new_thread(test, ())
  84. thread.start_new_thread(test, ())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement