sigyllly commited on
Commit
28be6d4
·
verified ·
1 Parent(s): 017ade8

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +1 -1
utils.py CHANGED
@@ -40,7 +40,7 @@ def generate_random_string(length=8):
40
 
41
  def obfuscate_powershell_script(ps1_path):
42
  try:
43
- cmd = f'powershell -EP Bypass -f "{OBFUSCATOR_SCRIPT}"'
44
  process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
45
  process.stdin.write(f"{ps1_path}\n")
46
  process.stdin.flush()
 
40
 
41
  def obfuscate_powershell_script(ps1_path):
42
  try:
43
+ cmd = f'pwsh -f "{OBFUSCATOR_SCRIPT}"'
44
  process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
45
  process.stdin.write(f"{ps1_path}\n")
46
  process.stdin.flush()