-
Notifications
You must be signed in to change notification settings - Fork 0
/
Visa.py
69 lines (35 loc) · 1.88 KB
/
Visa.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import requests
import random
import os
def banner():
os.system('clear')
print ('\t \033[1;34m ▇▇▇◤▔▔▔▔▔▔▔◥▇▇▇ ')
print('\t \033[1;34m ▇▇▇▏◥▇◣┊◢▇◤▕▇▇▇ ')
print ('\t \033[1;34m ▇▇▇▏▃▆▅▎▅▆▃▕▇▇▇ ')
print ('\t \033[1;34m ▇▇▇▏╱▔▕▎▔▔╲▕▇▇▇ ')
print ('\t \033[1;34m ▇▇▇◣◣▃▅▎▅▃◢◢▇▇▇\033[2;32m Code By :\033[2;31m Creack_Dark ')
print ('\t \033[1;34m ▇▇▇▇◣◥▅▅▅◤◢▇▇▇▇ ')
print ('\t \033[1;34m ▇▇▇▇▇◣╲▇╱◢▇▇▇▇▇ ')
print ('\t \033[1;34m ▇▇▇▇▇▇◣▇◢▇▇▇▇▇▇ ')
print('''\n\t\033[1;33m https://t.me/Creack_Dark
\t https://github.com/Creack_Dark/\n''')
banner()
print('\033[2;37m-------------------------------------------------------------')
N = '1234567890'
while True:
bin = int("". join(random.choice(N) for i in range(6)))
url = f"https://api.dlyar-dev.tk/info-bin?bin={bin}"
res = requests.get(url).json()
if res["status"] == True:
try:
co = res["country"]
fl = res["flag"]
print(f'\033[2;32m Good bin : \033[2;34m {bin} \n \033[2;33m Bin Visa ✅ \n Country : \033[2;37m{co} \n \033[2;33m Flag : \033[2;31m{fl} ')
print('\033[2;37m--------------------------------------------')
except:
print(f'\033[2;31m Bad bin : \033[2;35m {bin} ')
print('\033[2;37m--------------------------------------------')
continue
else:
print(f'\033[2;31m Bad bin : \033[2;35m {bin} ')
print('\033[2;37m--------------------------------------------')