-
Notifications
You must be signed in to change notification settings - Fork 3
/
ethX.py
46 lines (43 loc) · 2.45 KB
/
ethX.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from hdwallet import HDWallet
from hdwallet.symbols import ETH as SYMBOL
from hexer import mHash
from colorama import Fore,Style
mmdrza = '''
||=======================================================================||
||- ╔╦╗╔╦╗╔╦╗╦═╗╔═╗╔═╗ ╔═╗╔═╗╔╦╗ -||- -||
||- ║║║║║║ ║║╠╦╝╔═╝╠═╣ ║ ║ ║║║║ -||- -||
||- ╩ ╩╩ ╩═╩╝╩╚═╚═╝╩ ╩o╚═╝╚═╝╩ ╩ -||- @@@@@@@@ @@@@@@@ @@@ @@@ -||
||--------------------------------||- @@! @@! @@! @@@ -||
||-| WebSite : Mmdrza.Com -||- @!!!:! @!! @!@!@!@! -||
||-| Mail : [email protected] -||- !!: !!: !!: !!! -||
||-| DEV.to/Mmdrza -||- : :: ::: : : : : -||
||-| Github.Com/PyMmdrza -||- PrivateKey Rich Wallet Cracker -||
||-| PythonWithMmdrza.Medium.Com -||- -||
||-----------------------------------------------------------------------||
||-| Donate BTC Address Wallet => 16p9y6EstGYcnofGNvUJMEGKiAWhAr1uR8 -||
||=======================================================================||
-----------------------------------------------------------------------------------------------------------------
'''
filename = input('FileName ====================>>====>> ')
with open(filename) as f:
add = f.read().split()
add = set(add)
print('\n\n\n\n\n\n\n\n\n\n\n\n', Fore.RED, str(mmdrza), Style.RESET_ALL, '\n')
z = 1
while True:
hex64 = mHash()
PRIVATE_KEY: str = hex64
hdwallet: HDWallet = HDWallet(symbol=SYMBOL)
hdwallet.from_private_key(private_key=PRIVATE_KEY)
priv = hdwallet.private_key()
addr = hdwallet.p2pkh_address()
print(Fore.WHITE, str(z), Fore.YELLOW, 'Total Scan Checking ----- ETH Address =', Fore.GREEN, str(addr), end='\r')
z += 1
if addr in add:
f = open("EthereumRichWinnerWallet.txt","a")
f.write('\nAddress = ' + str(addr))
f.write('\nPrivate Key = ' + str(priv))
f.write('\n=========================================================\n')
f.close()
print('Winner information Saved On text file')
continue