-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
57 lines (45 loc) · 3.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
51
52
53
54
55
56
57
import requests
import json
#from time import sleep
#from tqdm import tqdm
import webbrowser
print(r"""\
.--..--..--..--..--..--..--..--..--..--..--..--..--..--..--..--..--..--..--..--..--.
/ .. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \.. \
\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/ \/\ \/\ \/\ \/\ \/\ \/\
\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\// / /
/ /\/ /`' /`' /`' /`' /`' /`' /`' /`' /`' /`' /`' /`' /`' /`' /`' /`' /`' /`' /`'/\/ /
/ /\ \/`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'--'`--'`--'`--'`--'`--/ /\ \
\/ /\ \ -ARBOFF 2021 / /\/ /
/ /\/ / ██████╗ ██╗ ██╗██████╗ █████╗ ███████╗███████╗███╗ ███╗███████╗ \ \/ /\
/ /\ \/ ██╔══██╗╚██╗ ██╔╝██╔══██╗██╔══██╗██╔════╝██╔════╝████╗ ████║██╔════╝ \ \/\ \
\ \/\ \ ██████╔╝ ╚████╔╝ ██████╔╝███████║███████╗███████╗██╔████╔██║█████╗ /\ \/ /
\/ /\ \ ██╔══██╗ ╚██╔╝ ██╔═══╝ ██╔══██║╚════██║╚════██║██║╚██╔╝██║██╔══╝ / /\/ /
/ /\/ / ██████╔╝ ██║ ██║ ██║ ██║███████║███████║██║ ╚═╝ ██║███████ \ \/ /\
/ /\ \/ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝╚══════╝ \ \/\ \
\ \/\ \.--..--..--..--..--..--..--..--..--..--..--..--..--..--..--..--..--..--..--/\ \/ /
\/ /\/ ../ ../ ../ ../ ../ ../ ../ ../ ../ ../ ../ ../ ../ ../ ../ ../ ../ ../ ..//\/ /
/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /\/ /
/ /\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \/\ \ \/\ \ \/\ \ \/\ \ \/\
\ `'\ `'\ `'\ `'\ `'\ `'\ `'\ `'\ `'\ `'\ `'\ `'\ `'\ `'\ `'\ `' \ `'\ `'\ `'\ `'\ `'\ /
`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'`--'--'--'--'--'--'--'--'--'
""")
while True:
missing = input("Paste LINKVERTISE link: ")
bypassURL = "https://bypass.bot.nu/bypass2?" + missing
params = {'url': missing}
r = requests.get(bypassURL, params=params)
jjson = r.json()
#for i in tqdm(range(10)):
# sleep(0.1)
print("")
print("")
try:
print("LINK: " + jjson['destination'])
target = str(jjson['destination'])
input("Press any key...")
#webbrowser.get("google-chrome").open(target)
break
except KeyError:
print("Invalid Link // Bad Request")
input("Press any key...")