├── README.md ├── RichWalletAddress_ETH.txt ├── ScreenEtherRich1.jpg ├── docs ├── _config.yml └── index.md ├── hexer.py ├── install_pack.bat └── richeth.py /README.md: -------------------------------------------------------------------------------- 1 | # Ethereum Rich Private Key Wallet Finder 2 | 3 | ---- 4 | 5 | ![Rich Address Wallet List](https://raw.githubusercontent.com/Pymmdrza/Rich-Address-Wallet/main/richwallet1.png) 6 | 7 | PrivateKey Finder All Rich Address wallet Ethereum By HDWAllet and [RichWalletList](https://github.com/Pymmdrza/Rich-Address-Wallet) 8 | --- 9 | ![Ethereum Private Key Rich Wallet Finder](https://raw.githubusercontent.com/Pymmdrza/RichWalletPrivateKeyFinder/mainx/ScreenEtherRich1.jpg) 10 | --- 11 | First Install This Package's : 12 | ``` 13 | pip install cryptofuzz colorama 14 | ``` 15 | 16 | After install Run Program With This Common On Terminal or Consol (`richeth.py`) 17 | ``` 18 | python richeth.py 19 | ``` 20 | Linux : 21 | ``` 22 | python3 richeth.py 23 | ``` 24 | * Use Rich Wallet List ethereum file `/RichWalletAddress_ETH.txt` imported here 12k address rich wallet ethereum [12000](https://github.com/Pymmdrza/RichWalletPrivateKeyFinder/blob/mainx/RichWalletAddress_ETH.txt) 25 | -------------------------------------------------------------------------------- /ScreenEtherRich1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pymmdrza/RichWalletPrivateKeyFinder/659387d59510f7c76e58283321b97253114e8190/ScreenEtherRich1.jpg -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-tactile -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | ![Rich Address Wallet List](https://raw.githubusercontent.com/Pymmdrza/Rich-Address-Wallet/main/richwallet1.png) 2 | 3 | # Ethereum Rich Private Key Wallet Finder 4 | 5 | PrivateKey Finder All Rich Address wallet Ethereum By HDWAllet and [RichWalletList](https://github.com/Pymmdrza/Rich-Address-Wallet) 6 | --- 7 | ![Ethereum Private Key Rich Wallet Finder](https://raw.githubusercontent.com/Pymmdrza/RichWalletPrivateKeyFinder/mainx/ScreenEtherRich1.jpg) 8 | --- 9 | First Install This Package's : 10 | ``` 11 | pip install cryptofuzz colorama 12 | ``` 13 | 14 | After install Run Program With This Common On Terminal or Consol (`richeth.py`) 15 | ``` 16 | python richeth.py 17 | ``` 18 | Linux : 19 | ``` 20 | python3 richeth.py 21 | ``` 22 | * Use Rich Wallet List ethereum file `/RichWalletAddress_ETH.txt` imported here 12k address rich wallet ethereum [12000](https://github.com/Pymmdrza/RichWalletPrivateKeyFinder/blob/mainx/RichWalletAddress_ETH.txt) 23 | -------------------------------------------------------------------------------- /hexer.py: -------------------------------------------------------------------------------- 1 | # 2 | from random import choice as c 3 | 4 | 5 | def mHash(): 6 | """ Generated random hash without repetition (default size: 64) """ 7 | return ''.join(c('0123456789abcdef') for _ in range(64)) 8 | 9 | 10 | def mhex128(): 11 | """ Generated random hash without repetition (default size: 128). """ 12 | return ''.join(c('0123456789abcdef') for _ in range(128)) 13 | 14 | 15 | # //===================================================== 16 | # // DONATE (BTC) : 1MMDRZAcM6dzmdMUSV8pDdAPDFpwzve9Fc 17 | # // Website : Mmdrza.Com 18 | # // Email : mmdrza@usa.com 19 | # // Github.com/Pymmdrza 20 | # //===================================================== 21 | -------------------------------------------------------------------------------- /install_pack.bat: -------------------------------------------------------------------------------- 1 | pip install cryptofuzz colorama 2 | -------------------------------------------------------------------------------- /richeth.py: -------------------------------------------------------------------------------- 1 | from cryptofuzz import Ethereum 2 | from hexer import mHash 3 | from colorama import Fore,Style 4 | 5 | mmdrza = ''' 6 | ||=======================================================================|| 7 | ||- ╔╦╗╔╦╗╔╦╗╦═╗╔═╗╔═╗ ╔═╗╔═╗╔╦╗ -||- -|| 8 | ||- ║║║║║║ ║║╠╦╝╔═╝╠═╣ ║ ║ ║║║║ -||- -|| 9 | ||- ╩ ╩╩ ╩═╩╝╩╚═╚═╝╩ ╩o╚═╝╚═╝╩ ╩ -||- @@@@@@@@ @@@@@@@ @@@ @@@ -|| 10 | ||--------------------------------||- @@! @@! @@! @@@ -|| 11 | ||-| WebSite : Mmdrza.Com -||- @!!!:! @!! @!@!@!@! -|| 12 | ||--------------------------------||- !!: !!: !!: !!! -|| 13 | ||-| Github.Com/PyMmdrza -||- : :: ::: : : : : -|| 14 | ||-| Mdrza.Medium.Com -||- PrivateKey Rich Wallet Cracker -|| 15 | ||-----------------------------------------------------------------------|| 16 | ||-| Donate BTC Address Wallet => 1MMDRZAcM6dzmdMUSV8pDdAPDFpwzve9Fc -|| 17 | ||=======================================================================|| 18 | ----------------------------------------------------------------------------------------------------------------- 19 | ''' 20 | 21 | 22 | filename = input('FileName >> ') 23 | with open(filename) as f: 24 | add = f.read().split() 25 | add = set(add) 26 | print('\n\n\n\n\n\n\n\n\n\n\n\n', Fore.RED, str(mmdrza), Style.RESET_ALL, '\n') 27 | z = 1 28 | eth = Ethereum() 29 | while True: 30 | hex64 = mHash() 31 | priv = hex64 32 | addr = eth.hex_addr(priv) 33 | print(Fore.WHITE, str(z), Fore.YELLOW, 'Total Scan Checking ----- ETH Address =', Fore.GREEN, str(addr), end='\r') 34 | z += 1 35 | if addr in add: 36 | f = open("EthereumRichWinnerWallet.txt","a") 37 | f.write('\nAddress = ' + str(addr)) 38 | f.write('\nPrivate Key = ' + str(priv)) 39 | f.write('\n=========================================================\n') 40 | f.close() 41 | print('Winner information Saved On text file') 42 | continue 43 | 44 | --------------------------------------------------------------------------------