-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotorec.py
393 lines (302 loc) · 14 KB
/
photorec.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
import os
import platform
import subprocess
import sys
import urllib.request
import tarfile
import zipfile
import ctypes
import threading
def is_admin():
# Check if the script is running with administrative privileges
try:
return ctypes.windll.shell32.IsUserAnAdmin()
except:
return False
def run_as_admin():
# Re-run the script with admin privileges using ShellExecute
if platform.system() == 'Windows':
script = os.path.abspath(sys.argv[0])
ctypes.windll.shell32.ShellExecuteW(None, "runas", sys.executable, script, None, 1)
sys.exit(0)
if not is_admin():
run_as_admin()
def download_photorec():
if platform.system() == 'Windows':
download_url = 'https://www.cgsecurity.org/testdisk-7.2-WIP.win64.zip'
zip_file = 'testdisk.zip'
extract_dir = 'testdisk'
executable_path = os.path.abspath(os.path.join(extract_dir, 'testdisk-7.2-WIP', 'photorec_win.exe'))
else:
download_url = 'https://www.cgsecurity.org/testdisk-7.3.linux.tar.gz'
tar_file = 'testdisk.tar.gz'
extract_dir = 'testdisk'
executable_path = os.path.abspath(os.path.join(extract_dir, 'testdisk-7.3', 'photorec_static'))
# Download the PhotoRec archive
try:
urllib.request.urlretrieve(download_url, zip_file)
except Exception as e:
print("Failed to download PhotoRec archive:", e)
return None
# Extract the archive
try:
with zipfile.ZipFile(zip_file, 'r') as zip_ref:
zip_ref.extractall(extract_dir)
except Exception as e:
print("Failed to extract PhotoRec archive:", e)
os.remove(zip_file)
return None
return executable_path
def run_photorec(forensic_image_path, destination_path):
photorec_path = download_photorec()
if photorec_path is None:
return
image_name = forensic_image_path
if platform.system() == 'Windows':
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name,
'fileopt,everything,disable,jpg,enable,pdf,enable,png,enable,search']
else:
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name, 'fileopt,everything,enable,search']
print("Executing command:", command)
def show_popup_message():
# Function to show a pop-up message saying "Data carving completed"
MB_OK = 0x0
MessageBoxW = ctypes.windll.user32.MessageBoxW
MessageBoxW(None, "Data carving completed", "PhotoRec", MB_OK)
try:
output = subprocess.run(command, capture_output=True, text=True)
print(output.stdout)
show_popup_message() # Show pop-up message when the process completes
except subprocess.CalledProcessError as e:
print("Command execution failed with exit code:", e.returncode)
print("Error output:")
print(e.stderr)
def run_photorec_jpg(forensic_image_path, destination_path):
photorec_path = download_photorec()
if photorec_path is None:
return
image_name = forensic_image_path
if platform.system() == 'Windows':
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name,
'fileopt,everything,disable,jpg,enable,search']
else:
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name, 'fileopt,everything,disable,jpg,enable,search']
print("Executing command:", command)
def show_popup_message1():
MB_OK = 0x0
MessageBoxW = ctypes.windll.user32.MessageBoxW
MessageBoxW(None, "JPG Carving completed", MB_OK)
try:
output = subprocess.run(command, capture_output=True, text=True)
print(output.stdout)
show_popup_message1()
except subprocess.CalledProcessError as e:
print("Command execution failed with exit code:", e.returncode)
print("Error output:")
print(e.stderr)
def run_photorec_png(forensic_image_path, destination_path):
photorec_path = download_photorec()
if photorec_path is None:
return
image_name = forensic_image_path
if platform.system() == 'Windows':
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name,
'fileopt,everything,disable,png,enable,search']
else:
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name, 'fileopt,everything,disable,png,enable,search']
print("Executing command:", command)
def show_popup_message2():
MB_OK = 0x0
MessageBoxW = ctypes.windll.user32.MessageBoxW
MessageBoxW(None, "PNG Carving completed", MB_OK)
try:
output = subprocess.run(command, capture_output=True, text=True)
print(output.stdout)
show_popup_message2()
except subprocess.CalledProcessError as e:
print("Command execution failed with exit code:", e.returncode)
print("Error output:")
print(e.stderr)
def run_photorec_gif(forensic_image_path, destination_path):
photorec_path = download_photorec()
if photorec_path is None:
return
image_name = forensic_image_path
if platform.system() == 'Windows':
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name,
'fileopt,everything,disable,gif,enable,search']
else:
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name, 'fileopt,everything,disable,gif,enable,search']
print("Executing command:", command)
def show_popup_message3():
MB_OK = 0x0
MessageBoxW = ctypes.windll.user32.MessageBoxW
MessageBoxW(None, "GIF Carving completed", MB_OK)
try:
output = subprocess.run(command, capture_output=True, text=True)
print(output.stdout)
show_popup_message3()
except subprocess.CalledProcessError as e:
print("Command execution failed with exit code:", e.returncode)
print("Error output:")
print(e.stderr)
def run_photorec_office(forensic_image_path, destination_path):
photorec_path = download_photorec()
if photorec_path is None:
return
image_name = forensic_image_path
if platform.system() == 'Windows':
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name,
'fileopt,everything,disable,docx,enable,doc,enable,search']
else:
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name, 'fileopt,everything,disable,docx,enable,doc,enable,search']
print("Executing command:", command)
def show_popup_message4():
MB_OK = 0x0
MessageBoxW = ctypes.windll.user32.MessageBoxW
MessageBoxW(None, "GIF Carving completed", MB_OK)
try:
output = subprocess.run(command, capture_output=True, text=True)
print(output.stdout)
show_popup_message4()
except subprocess.CalledProcessError as e:
print("Command execution failed with exit code:", e.returncode)
print("Error output:")
print(e.stderr)
def run_photorec_ppt(forensic_image_path, destination_path):
photorec_path = download_photorec()
if photorec_path is None:
return
image_name = forensic_image_path
if platform.system() == 'Windows':
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name,
'fileopt,everything,disable,pptx,enable,ppt,enable,search']
else:
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name, 'fileopt,everything,disable,pptx,enable,ppt,enable,search']
print("Executing command:", command)
def show_popup_message5():
MB_OK = 0x0
MessageBoxW = ctypes.windll.user32.MessageBoxW
MessageBoxW(None, "PPT Carving completed", MB_OK)
try:
output = subprocess.run(command, capture_output=True, text=True)
print(output.stdout)
show_popup_message5()
except subprocess.CalledProcessError as e:
print("Command execution failed with exit code:", e.returncode)
print("Error output:")
print(e.stderr)
def run_photorec_pdf(forensic_image_path, destination_path):
photorec_path = download_photorec()
if photorec_path is None:
return
image_name = forensic_image_path
if platform.system() == 'Windows':
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name,
'fileopt,everything,disable,pdf,enable,search']
else:
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name, 'fileopt,everything,disable,pdf,search']
print("Executing command:", command)
def show_popup_message6():
MB_OK = 0x0
MessageBoxW = ctypes.windll.user32.MessageBoxW
MessageBoxW(None, "PDF Carving completed", MB_OK)
try:
output = subprocess.run(command, capture_output=True, text=True)
print(output.stdout)
show_popup_message6()
except subprocess.CalledProcessError as e:
print("Command execution failed with exit code:", e.returncode)
print("Error output:")
print(e.stderr)
def run_photorec_xlsx(forensic_image_path, destination_path):
photorec_path = download_photorec()
if photorec_path is None:
return
image_name = forensic_image_path
if platform.system() == 'Windows':
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name,
'fileopt,everything,disable,xlsx,enable,xls,enable,search']
else:
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name, 'fileopt,everything,disable,xlsx,enable,xls,enable,search']
print("Executing command:", command)
def show_popup_message7():
MB_OK = 0x0
MessageBoxW = ctypes.windll.user32.MessageBoxW
MessageBoxW(None, "xlsx Carving completed", MB_OK)
try:
output = subprocess.run(command, capture_output=True, text=True)
print(output.stdout)
show_popup_message7()
except subprocess.CalledProcessError as e:
print("Command execution failed with exit code:", e.returncode)
print("Error output:")
print(e.stderr)
def run_photorec_deb(forensic_image_path, destination_path):
photorec_path = download_photorec()
if photorec_path is None:
return
image_name = forensic_image_path
if platform.system() == 'Windows':
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name,
'fileopt,everything,disable,exe,enable,search']
else:
command = [photorec_path, '/debug', '/log', '/d', destination_path, '/cmd', image_name, 'fileopt,everything,disable,exe,enable,search']
print("Executing command:", command)
def show_popup_message8():
MB_OK = 0x0
MessageBoxW = ctypes.windll.user32.MessageBoxW
MessageBoxW(None, "exe Carving completed", MB_OK)
try:
output = subprocess.run(command, capture_output=True, text=True)
print(output.stdout)
show_popup_message8()
except subprocess.CalledProcessError as e:
print("Command execution failed with exit code:", e.returncode)
print("Error output:")
print(e.stderr)
def run_photorec_background(forensic_image_path, destination_path):
def data_carving_task():
run_photorec(forensic_image_path, destination_path)
data_carving_thread = threading.Thread(target=data_carving_task)
data_carving_thread.start()
def run_photorec_background1(forensic_image_path, destination_path):
def data_carving_task():
run_photorec_jpg(forensic_image_path, destination_path)
data_carving_thread = threading.Thread(target=data_carving_task)
data_carving_thread.start()
def run_photorec_background2(forensic_image_path, destination_path):
def data_carving_task():
run_photorec_png(forensic_image_path, destination_path)
data_carving_thread = threading.Thread(target=data_carving_task)
data_carving_thread.start()
def run_photorec_background3(forensic_image_path, destination_path):
def data_carving_task():
run_photorec_gif(forensic_image_path, destination_path)
data_carving_thread = threading.Thread(target=data_carving_task)
data_carving_thread.start()
def run_photorec_background4(forensic_image_path, destination_path):
def data_carving_task():
run_photorec_office(forensic_image_path, destination_path)
data_carving_thread = threading.Thread(target=data_carving_task)
data_carving_thread.start()
def run_photorec_background5(forensic_image_path, destination_path):
def data_carving_task():
run_photorec_ppt(forensic_image_path, destination_path)
data_carving_thread = threading.Thread(target=data_carving_task)
data_carving_thread.start()
def run_photorec_background6(forensic_image_path, destination_path):
def data_carving_task():
run_photorec_pdf(forensic_image_path, destination_path)
data_carving_thread = threading.Thread(target=data_carving_task)
data_carving_thread.start()
def run_photorec_background7(forensic_image_path, destination_path):
def data_carving_task():
run_photorec_xlsx(forensic_image_path, destination_path)
data_carving_thread = threading.Thread(target=data_carving_task)
data_carving_thread.start()
def run_photorec_background8(forensic_image_path, destination_path):
def data_carving_task():
run_photorec_deb(forensic_image_path, destination_path)
data_carving_thread = threading.Thread(target=data_carving_task)
data_carving_thread.start()