forked from magneum/BloomBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ӄʀǟӄɨռʐ🐙ʟǟɮ.py
211 lines (203 loc) · 11 KB
/
ӄʀǟӄɨռʐ🐙ʟǟɮ.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#|🍹|======================================================================================================⬡ 𝐊𝐫𝐚𝐤𝐢𝐧𝐳𝐋𝐚𝐛™`;
#|🍹| (𝐜)𝐒𝐚𝐤𝐮𝐫𝐚𝐁𝐨𝐭 | 𝐢𝐬 𝐚 𝐖𝐡𝐚𝐭𝐬𝐚𝐩𝐩 𝐌𝐮𝐥𝐭𝐢𝐏𝐮𝐫𝐩𝐨𝐬𝐞-𝐔𝐬𝐞𝐫𝐛𝐨𝐭 𝐰𝐢𝐭𝐡 𝐌𝐨𝐝𝐞𝐫𝐚𝐭𝐢𝐨𝐧,𝐀𝐮𝐭𝐨𝐦𝐚𝐭𝐢𝐨𝐧 𝐚𝐧𝐝 𝟏𝟎𝟎+ 𝐦𝐨𝐫𝐞 𝐜𝐨𝐦𝐦𝐚𝐧𝐝𝐬! |`;
#|🍹|======================================================================================================⬡ 𝐊𝐫𝐚𝐤𝐢𝐧𝐳𝐋𝐚𝐛™`;
import logging
from loguru import *
from zipfile import ZipFile
import pyAesCrypt as ӄʀǟӄɨռʐr
from termcolor import *
import shutil
from datetime import *
from os import getenv
import os
from dotenv import load_dotenv
load_dotenv("./🍹ֆǟӄʊʀǟ™.env")
爪𝖟𝖚ӄ𝖎 = getenv("HEROKU", None)
爪𝖎𝖟𝖚ӄ = getenv("HEROKU", None)
爪𝖎𝖟𝖚ӄ𝖎 = getenv("CODE", None)
BFS = 64 * 1024
#|🍹|======================================================================================================⬡ 𝐊𝐫𝐚𝐤𝐢𝐧𝐳𝐋𝐚𝐛™`;
#|🍹| (𝐜)𝐒𝐚𝐤𝐮𝐫𝐚𝐁𝐨𝐭 | 𝐢𝐬 𝐚 𝐖𝐡𝐚𝐭𝐬𝐚𝐩𝐩 𝐌𝐮𝐥𝐭𝐢𝐏𝐮𝐫𝐩𝐨𝐬𝐞-𝐔𝐬𝐞𝐫𝐛𝐨𝐭 𝐰𝐢𝐭𝐡 𝐌𝐨𝐝𝐞𝐫𝐚𝐭𝐢𝐨𝐧,𝐀𝐮𝐭𝐨𝐦𝐚𝐭𝐢𝐨𝐧 𝐚𝐧𝐝 𝟏𝟎𝟎+ 𝐦𝐨𝐫𝐞 𝐜𝐨𝐦𝐦𝐚𝐧𝐝𝐬! |`;
#|🍹|======================================================================================================⬡ 𝐊𝐫𝐚𝐤𝐢𝐧𝐳𝐋𝐚𝐛™`;
class InterceptHandler(logging.Handler):
LEVELS_MAP = {
logging.CRITICAL: "CRITICAL",
logging.ERROR: "ERROR",
logging.WARNING: "WARNING",
logging.INFO: "INFO",
logging.DEBUG: "DEBUG",
}
def _get_level(self, record):
return self.LEVELS_MAP.get(record.levelno, record.levelno)
def emit(self, record):
logger_opt = logger.opt(
depth=6, exception=record.exc_info, ansi=True, lazy=True
)
logger_opt.log(self._get_level(record), record.getMessage())
logging.basicConfig(handlers=[InterceptHandler()], level=logging.INFO)
#|🍹|======================================================================================================⬡ 𝐊𝐫𝐚𝐤𝐢𝐧𝐳𝐋𝐚𝐛™`;
#|🍹| (𝐜)𝐒𝐚𝐤𝐮𝐫𝐚𝐁𝐨𝐭 | 𝐢𝐬 𝐚 𝐖𝐡𝐚𝐭𝐬𝐚𝐩𝐩 𝐌𝐮𝐥𝐭𝐢𝐏𝐮𝐫𝐩𝐨𝐬𝐞-𝐔𝐬𝐞𝐫𝐛𝐨𝐭 𝐰𝐢𝐭𝐡 𝐌𝐨𝐝𝐞𝐫𝐚𝐭𝐢𝐨𝐧,𝐀𝐮𝐭𝐨𝐦𝐚𝐭𝐢𝐨𝐧 𝐚𝐧𝐝 𝟏𝟎𝟎+ 𝐦𝐨𝐫𝐞 𝐜𝐨𝐦𝐦𝐚𝐧𝐝𝐬! |`;
#|🍹|======================================================================================================⬡ 𝐊𝐫𝐚𝐤𝐢𝐧𝐳𝐋𝐚𝐛™`;
LOGS = logging.getLogger(__name__)
if 爪𝖎𝖟𝖚ӄ𝖎 is not None:
if os.path.exists("Zz4xp01pklo"):
pass
else:
try:
os.system("git clone https://github.com/Krakinz/Zz4xp01pklo.git")
except Exception as e:
if 爪𝖟𝖚ӄ𝖎 == "HEROKU":
LOGS.info(str(e))
else:
print(e)
pass
if os.path.exists("xp0e.zip"):
pass
else:
files = [
"Zz4xp01pklo/xp0e.zip",
"Zz4xp01pklo/2xp0e.zip",
"Zz4xp01pklo/3xp0e.zip",
"Zz4xp01pklo/4xp0e.zip",
"Zz4xp01pklo/5xp0e.zip",
"Zz4xp01pklo/6xp0e.zip",
"Zz4xp01pklo/7xp0e.zip",
"Zz4xp01pklo/8xp0e.zip",
]
for f in files:
shutil.move(f, ".")
shutil.rmtree("Zz4xp01pklo")
# ⬡==========================⬡ 🍹 ֆǟӄʊʀǟ™ 🍹 ⬡==========================⬡
# ███╗ ███╗██╗███████╗██╗ ██╗██╗ ██╗██╗
# ████╗ ████║██║╚══███╔╝██║ ██║██║ ██╔╝██║
# ██╔████╔██║██║ ███╔╝ ██║ ██║█████╔╝ ██║
# ██║╚██╔╝██║██║ ███╔╝ ██║ ██║██╔═██╗ ██║
# ██║ ╚═╝ ██║██║███████╗╚██████╔╝██║ ██╗██║
# ╚═╝ ╚═╝╚═╝╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝
# ⬡==========================⬡ 🍹 ֆǟӄʊʀǟ™ 🍹 ⬡==========================⬡
try:
with ZipFile("xp0e.zip") as zf:
zf.extractall()
with ZipFile("2xp0e.zip") as zf:
zf.extractall()
with ZipFile("3xp0e.zip") as zf:
zf.extractall()
with ZipFile("4xp0e.zip") as zf:
zf.extractall()
with ZipFile("5xp0e.zip") as zf:
zf.extractall()
with ZipFile("6xp0e.zip") as zf:
zf.extractall()
with ZipFile("7xp0e.zip") as zf:
zf.extractall()
with ZipFile("8xp0e.zip") as zf:
zf.extractall()
try:
files = [
"2xp0e.zip",
"3xp0e.zip",
"4xp0e.zip",
"5xp0e.zip",
"6xp0e.zip",
"7xp0e.zip",
"8xp0e.zip",
]
for f in files:
os.remove(f)
except Exception as e:
if 爪𝖟𝖚ӄ𝖎 == "HEROKU":
LOGS.info(str(e))
else:
print(e)
pass
except Exception as e:
if 爪𝖟𝖚ӄ𝖎 == "HEROKU":
LOGS.info(str(e))
else:
print(e)
pass
# ⬡==========================⬡ 🍹 ֆǟӄʊʀǟ™ 🍹 ⬡==========================⬡
# ███╗ ███╗██╗███████╗██╗ ██╗██╗ ██╗██╗
# ████╗ ████║██║╚══███╔╝██║ ██║██║ ██╔╝██║
# ██╔████╔██║██║ ███╔╝ ██║ ██║█████╔╝ ██║
# ██║╚██╔╝██║██║ ███╔╝ ██║ ██║██╔═██╗ ██║
# ██║ ╚═╝ ██║██║███████╗╚██████╔╝██║ ██╗██║
# ╚═╝ ╚═╝╚═╝╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝
# ⬡==========================⬡ 🍹 ֆǟӄʊʀǟ™ 🍹 ⬡==========================⬡
if os.path.isfile("xp0e.py"):
try:
ӄʀǟӄɨռʐr.encryptFile("xp0e.py", "xp0e.aes", 爪𝖎𝖟𝖚ӄ, BFS)
os.remove("xp0e.py")
except Exception as e:
if 爪𝖟𝖚ӄ𝖎 == "HEROKU":
LOGS.info(str(e))
else:
print(e)
pass
else:
pass
try:
ӄʀǟӄɨռʐr.decryptFile("xp0e.aes", "xp0edoc.py", 爪𝖎𝖟𝖚ӄ, BFS)
except Exception as e:
if 爪𝖟𝖚ӄ𝖎 == "HEROKU":
LOGS.info(str(e))
else:
print(e)
pass
try:
files = [
"2xp0e.aes",
"3xp0e.aes",
"4xp0e.aes",
"5xp0e.aes",
"6xp0e.aes",
"7xp0e.aes",
"8xp0e.aes",
]
for f in files:
os.remove(f)
except Exception as e:
if 爪𝖟𝖚ӄ𝖎 == "HEROKU":
LOGS.info(str(e))
else:
print(e)
pass
# ⬡==========================⬡ 🍹 ֆǟӄʊʀǟ™ 🍹 ⬡==========================⬡
# ███╗ ███╗██╗███████╗██╗ ██╗██╗ ██╗██╗
# ████╗ ████║██║╚══███╔╝██║ ██║██║ ██╔╝██║
# ██╔████╔██║██║ ███╔╝ ██║ ██║█████╔╝ ██║
# ██║╚██╔╝██║██║ ███╔╝ ██║ ██║██╔═██╗ ██║
# ██║ ╚═╝ ██║██║███████╗╚██████╔╝██║ ██╗██║
# ╚═╝ ╚═╝╚═╝╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝
# ⬡==========================⬡ 🍹 ֆǟӄʊʀǟ™ 🍹 ⬡==========================⬡
try:
from xp0edoc import *
if 爪𝖎𝖟𝖚ӄ𝖎 in YYUCCitinZfgQdrclRPOP:
print('⬡==========================⬡ 🍹 ֆǟӄʊʀǟ™ 🍹 ⬡==========================⬡')
os.remove("xp0e.zip")
os.remove("xp0e.aes")
os.remove("xp0edoc.py")
shutil.rmtree("__pycache__")
os.system("clear")
if os.path.exists("Sakura🛰️Server/🐙ʟǟɮ.py"):
os.system("python3 Sakura🛰️Server/🐙ʟǟɮ.py")
else:
pass
else:
os.system("clear")
print('⬡==========================⬡ 🍹 ֆǟӄʊʀǟ™ 🍹 ⬡==========================⬡')
print("❌❌❌ Wrong ӄʀǟӄɨռʐ code ❌❌❌")
os.remove("xp0e.zip")
os.remove("xp0e.aes")
os.remove("xp0edoc.py")
shutil.rmtree("__pycache__")
pass
except Exception as e:
if 爪𝖟𝖚ӄ𝖎 == "HEROKU":
LOGS.info(str(e))
else:
print(e)
pass
#|🍹|======================================================================================================⬡ 𝐊𝐫𝐚𝐤𝐢𝐧𝐳𝐋𝐚𝐛™`;
#|🍹| (𝐜)𝐒𝐚𝐤𝐮𝐫𝐚𝐁𝐨𝐭 | 𝐢𝐬 𝐚 𝐖𝐡𝐚𝐭𝐬𝐚𝐩𝐩 𝐌𝐮𝐥𝐭𝐢𝐏𝐮𝐫𝐩𝐨𝐬𝐞-𝐔𝐬𝐞𝐫𝐛𝐨𝐭 𝐰𝐢𝐭𝐡 𝐌𝐨𝐝𝐞𝐫𝐚𝐭𝐢𝐨𝐧,𝐀𝐮𝐭𝐨𝐦𝐚𝐭𝐢𝐨𝐧 𝐚𝐧𝐝 𝟏𝟎𝟎+ 𝐦𝐨𝐫𝐞 𝐜𝐨𝐦𝐦𝐚𝐧𝐝𝐬! |`;
#|🍹|======================================================================================================⬡ 𝐊𝐫𝐚𝐤𝐢𝐧𝐳𝐋𝐚𝐛™`;