-
Notifications
You must be signed in to change notification settings - Fork 26
/
main.py
57 lines (51 loc) · 1.23 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
from tools import tools
from tools import proxy
from termcolor import colored
import requests
# ____ ___ ________ _ __
# / __ \/ _ \/ _/ __ \/ |/ /
# / /_/ / , _// // /_/ / /
# \____/_/|_/___/\____/_/|_/
#
# https://t.me/orionbomber | https://t.me/orion_cloud_bot
# Why are you reading this?
# Better subscribe to Telegram - https://t.me/orionbomber
# There are 1500+ lines in this project,
# if you count user_agent.py and services.json,
# then there will be 2267 lines,
# Wow, right?
tools.clear()
tools.ICC()
tools.clear()
tools.check_files()
tools.CFU()
tools.CTF()
while True:
tools.clear()
tools.banner()
tools.banner_tools()
try:
tool = input(colored("\n~# ", "red"))
except KeyboardInterrupt:
continue
if tool == "1":
numb, ct, pr = tools.start_input()
if numb != 0:
tools.start(numb, ct, proxy_=pr)
elif tool == "0":
tools.clear()
break
elif tool == "99":
tools.banner_info()
elif tool == "2":
tools.donate()
#elif tool == "3":
#tools.inst_logs()
elif tool.lower() == "3":
tools.app()
elif tool.lower() == "clear logs":
tools.clear_logs()
elif tool.lower() == "update":
tools.force_update()
else:
pass