Spaces:
Sleeping
Sleeping
Update utils.py
Browse files
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 |
-
|
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:
|