sigyllly commited on
Commit
67295cd
·
verified ·
1 Parent(s): c5e0ff0

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +15 -3
utils.py CHANGED
@@ -3,12 +3,14 @@ import subprocess
3
  import random
4
  import string
5
  from datetime import datetime
6
- from flask import jsonify, send_file, current_app, url_for
7
  import shutil
8
  import tempfile
9
  import requests
10
  import json
11
 
 
 
12
  BASE_DIR = os.path.abspath(os.path.dirname(__file__))
13
  UPLOAD_FOLDER = os.path.join(BASE_DIR, "uploads")
14
  PE_FOLDER = os.path.join(BASE_DIR, "pe")
@@ -18,6 +20,8 @@ OBFUSCATOR_SCRIPT = os.path.join(BASE_DIR, "Obfus", "main.ps1")
18
  UPLOAD_URL = 'https://ambelo-benjamin.hf.space/upload'
19
  POWERSHELL_FILE_PATH = os.path.join(PE_FOLDER, "powershell.ps1")
20
 
 
 
21
  def generate_random_string(length=8):
22
  return ''.join(random.choices(string.ascii_letters + string.digits, k=length))
23
 
@@ -190,7 +194,8 @@ def replace_url_in_exe(file_path, old_url, new_url, old_string, new_string):
190
  except Exception as e:
191
  raise Exception(f"An error occurred: {e}")
192
 
193
- def process_request(request):
 
194
  temp_dir = None # Initialize temp_dir to be used in the finally block
195
  try:
196
  # Save the incoming binary file
@@ -272,4 +277,11 @@ def process_request(request):
272
  finally:
273
  # Clean up temporary directories and files
274
  if temp_dir and os.path.exists(temp_dir):
275
- shutil.rmtree(temp_dir, ignore_errors=True)
 
 
 
 
 
 
 
 
3
  import random
4
  import string
5
  from datetime import datetime
6
+ from flask import Flask, jsonify, send_file, current_app, url_for
7
  import shutil
8
  import tempfile
9
  import requests
10
  import json
11
 
12
+ app = Flask(__name__)
13
+
14
  BASE_DIR = os.path.abspath(os.path.dirname(__file__))
15
  UPLOAD_FOLDER = os.path.join(BASE_DIR, "uploads")
16
  PE_FOLDER = os.path.join(BASE_DIR, "pe")
 
20
  UPLOAD_URL = 'https://ambelo-benjamin.hf.space/upload'
21
  POWERSHELL_FILE_PATH = os.path.join(PE_FOLDER, "powershell.ps1")
22
 
23
+ app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
24
+
25
  def generate_random_string(length=8):
26
  return ''.join(random.choices(string.ascii_letters + string.digits, k=length))
27
 
 
194
  except Exception as e:
195
  raise Exception(f"An error occurred: {e}")
196
 
197
+ @app.route('/process', methods=['POST'])
198
+ def process_request():
199
  temp_dir = None # Initialize temp_dir to be used in the finally block
200
  try:
201
  # Save the incoming binary file
 
277
  finally:
278
  # Clean up temporary directories and files
279
  if temp_dir and os.path.exists(temp_dir):
280
+ shutil.rmtree(temp_dir, ignore_errors=True)
281
+
282
+ @app.route('/uploads/<filename>')
283
+ def uploaded_file(filename):
284
+ return send_file(os.path.join(app.config['UPLOAD_FOLDER'], filename), as_attachment=True)
285
+
286
+ if __name__ == '__main__':
287
+ app.run(debug=True)