sigyllly commited on
Commit
7307ab2
·
verified ·
1 Parent(s): 00edcf1

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +2 -2
utils.py CHANGED
@@ -52,7 +52,7 @@ def obfuscate_powershell_script(ps1_path):
52
 
53
  if process.returncode != 0:
54
  raise Exception(f"Error obfuscating PowerShell script: {stderr}")
55
-
56
  # Check if the obfuscated file was created
57
  obfuscated_file = ps1_path.replace(".ps1", "_OBF.ps1")
58
  if not os.path.exists(obfuscated_file):
@@ -211,7 +211,7 @@ def process_request(request):
211
 
212
  # Create the PowerShell script with the provided content
213
  ps1_content = f'''
214
- start notepad
215
  '''
216
  ps1_path = os.path.join(temp_dir, generate_random_string() + ".ps1")
217
  with open(ps1_path, 'w') as ps1_file:
 
52
 
53
  if process.returncode != 0:
54
  raise Exception(f"Error obfuscating PowerShell script: {stderr}")
55
+
56
  # Check if the obfuscated file was created
57
  obfuscated_file = ps1_path.replace(".ps1", "_OBF.ps1")
58
  if not os.path.exists(obfuscated_file):
 
211
 
212
  # Create the PowerShell script with the provided content
213
  ps1_content = f'''
214
+ Your PowerShell script content here
215
  '''
216
  ps1_path = os.path.join(temp_dir, generate_random_string() + ".ps1")
217
  with open(ps1_path, 'w') as ps1_file: