-
Notifications
You must be signed in to change notification settings - Fork 2
/
MicrosoftOfficeInspector.py
494 lines (478 loc) · 17.6 KB
/
MicrosoftOfficeInspector.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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
# Only for Windows 10 / 64 bits
############################################################################
#
# Microsoft Office File Inspector
# © 2020 ABDULKADİR GÜNGÖR All Rights Reserved
# Contact email address: abdulkadir_gungor@outlook.com
#
# Developper: Abdulkadir GÜNGÖR (abdulkadir_gungor@outlook.com)
# Date: 08/2020
# All Rights Reserved (Tüm Hakları Saklıdır)
#
############################################################################
#
import os
from lib.microsoft_office.Office import Office
#
# Ekranı Temizlemek için
def screenClear():
print("\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n") # Konsol dışı kullanımda ekranı temizlemek için
# clear screen
# ********************
# Windows
if os.name=='nt':
os.system('cls')
# Linux or MAC
elif os.name=='posix':
os.system('clear')
# ********************
print("")
# Giriş Menüsü
def menu0() -> int:
while True:
screenClear()
print()
print('\t#####################################################')
print('\t#/*************************************************\#')
print('\t#**||~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~||**#')
print('\t#**|| ||**#')
print('\t#**|| Microsoft Office File Inspector ||**#')
print('\t#**|| (Docx, Xlsx, Pptx, Docm, Xlsm vs.) ||**#')
print('\t#**|| 09/2020 ||**#')
print('\t#**|| ||**#')
print('\t#**|| Developer: Abdulkadir GÜNGÖR ||**#')
print('\t#**|| (abdulkadir_gungor@outlook.com) ||**#')
print('\t#**|| ||**#')
print('\t#**||~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~||**#')
print('\t#\*************************************************/#')
print('\t#####################################################')
print()
print()
print('\t MENU')
print('\t----------------------------------------')
print('\t1) Microsoft Office File Inspector')
print('\t2) Microsoft Office File Extract')
print('\t3) Microsoft Office File Package')
print()
print()
print( '\tÇıkış (Exit) <<e>>' )
tmp=input('\tSeçim (Selection) : ')
if tmp.strip().lower() == 'e' :
exit(0)
elif tmp.strip().isdigit():
slc = int(tmp.strip())
if 0< slc <4:
return slc
#
def menu2():
screenClear()
print()
print()
filename = input('\tOffice file name : ').strip()
directory = input('\tExtract Directory : ').strip()
print()
#
val = Office.Extract(officeFile=filename, extractDirectory=directory)
if type(val) == type(True):
if val:
print('\tİşlem başarılı. (Successful operation)')
print()
print()
input('\tDevam (Continue) <<enter>> : ')
#
def menu3():
screenClear()
print()
print()
#
directory = input('\tPackage Directory : ').strip()
filename = input('\tOffice File Name : ').strip()
print()
#
val = Office.Package(officeFile=filename, packageDirectory=directory)
if type(val) == type(True):
if val:
print('\tİşlem başarılı. (Successful operation)')
print()
print()
input('\tDevam (Continue) <<enter>> : ')
#
def menu1():
#
office = sub_menu1()
if type(office) == type(None):
return
#
if type(office) == type( Office(officeFile='?') ):
while True:
sub_menu2(fileaname=office.getOfficeFileName())
print()
print()
print('\tGeri (Back) <<b>> , Çıkış (Exit) <<e>>')
tmp = input('\tSeçim (Selection) : ').strip()
if tmp.lower() == 'e':
exit(0)
elif tmp.lower() == 'b':
return
elif tmp.isdigit():
slc = int(tmp)
if slc == 1:
screenClear()
print()
print()
print('\tFile Name : "{}" '.format( office.getOfficeFileName() ) )
print()
print()
print('\tBulunan Uzantılar')
print('\t------------------')
office.showExtensions()
print()
print()
input('\tDevam (Continue) <<enter>> : ').strip()
elif slc == 2:
screenClear()
print()
print()
print('\tFile Name : "{}" '.format( office.getOfficeFileName() ) )
print()
office.showExtensionsFiles()
print()
print()
input('\tDevam (Continue) <<enter>> : ').strip()
elif slc == 3:
sub_menu7(office=office)
elif slc == 4:
sub_menu3(office=office)
elif slc == 5:
sub_menu4(office=office)
elif slc == 6:
sub_menu5(office=office)
elif slc == 7:
sub_menu6(office=office)
elif slc == 8:
ext_name = (office.getOfficeObj().file.f1_name.split(sep='.')[-1]).upper()
dir_name = office.getOfficeObj().current_directory + '\\[' + ext_name + ']_' + office.getOfficeObj().file.f1_name
screenClear()
print()
print()
print('\tOffice file name : "'+office.getOfficeObj().file.f3_fullpath+'"')
print('\tExtract Directory : (Default) "' + dir_name + '"')
print()
print()
directory = input('\tDefault <<enter>> , New Extract Directory : ').strip()
if directory == '':
res = office.extractAllFiles()
else:
res = office.extractAllFiles(directory)
if res:
print('\tİşlem başarılı. (Operation successful)')
print()
print()
input('\tDevam (Continue) <<enter>> : ').strip()
#
def sub_menu1():
while True:
screenClear()
print()
print()
#
filename = input('\tOffice File : ').strip()
if filename != '':
try:
office_obj = Office(officeFile=filename)
if office_obj.getOfficeObj().checkFile:
return office_obj
except:
pass
print('\tDosya bulunamadı. (File not found)')
print()
print()
val = input('\tGeri (Back) <<b>> , Devam (Continue) <<enter>> : ').strip()
if val.lower() == 'b':
return None
#
def sub_menu2(fileaname:str) :
screenClear()
print()
print()
print('\t File name : "{}" '.format(fileaname))
print()
print()
print('\t **** MENU **** ')
print('\t-----------------------')
print('\t1) Uzantıları göster. (Show extensions) ')
print('\t2) Dosyaları göster. (Show files name)')
print('\t3) "Office" dosyasına ait metadata bilgileri. (Metadata infos in the office file)')
print('\t4) Dosyaların imzasını kontrol et. (Check files signature)')
print('\t5) JPEG/JPG dosyaları "JPGInspector" ile aç. (Open jpeg/jpg files with "JPGInspector")')
print('\t6) Dosyaları "HexEditor" ile aç. (Open files with "HexEditor")')
print('\t7) Seçilen dosyayı çıkart. (The file extract)')
print('\t8) Tüm dosyaları çıkart. (All files extract)')
#
def sub_menu3(office:Office):
while True:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
print()
print('\t **** MENU **** ')
print('\t-----------------------')
print('\t1) Tek tek dosya imzalarını kontrol et. (Check one file signature)')
print('\t2) Bütün dosyaların imzalarını kontrol et. (Check all files signature)')
print()
print()
print('\tGeri (Back) <<b>> , Çıkış (Exit) <<e>>')
tmp = input('\tSeçim (Selection) : ').strip()
if tmp.lower() == 'e':
exit(0)
elif tmp.lower() == 'b':
return
elif tmp.isdigit():
slc= int(tmp)
if slc == 1:
while True:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
print()
office.showFiles()
print()
print()
print()
print()
print('\tGeri (Back) <<b>> , Çıkış (Exit) <<e>>')
tmp2 = input('\tSeçim (Selection) : ').strip()
if tmp2.lower() == 'e':
exit(0)
elif tmp2.lower() == 'b':
break
elif tmp2.isdigit():
slc = int(tmp2)
screenClear()
print()
print()
print()
office.showCheckFile(index=slc)
print()
print()
print()
input('\tDevam (Continue) << enter >> : ')
if slc == 2:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
office.showCheckAllFiles()
print()
print()
input('\tDevam (Continue) << enter >> : ')
#
def sub_menu4(office:Office):
while True:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
office.showJPGjpegFiles()
print()
print()
print('\tGeri (Back) <<b>> , Çıkış (Exit) <<e>>')
tmp = input('\tSeçim (Selection) : ').strip()
if tmp.lower() == 'e':
exit(0)
elif tmp.lower() == 'b':
return
elif tmp.isdigit():
slc= int(tmp)
screenClear()
office.showJPGjpegFile(index=slc)
#
def sub_menu5(office:Office):
while True:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
print()
print('\t **** MENU **** ')
print('\t-----------------------')
print('\t1) Dosyanın ilk satırlarını "hex editor"de aç.(Show first line of the file with "hex editor") ')
print('\t2) Dosyayı "hex editor"de aç. (Open file with "hex editor") ')
print('\t3) Tüm dosyaların ilk satırlarını "hex editor"de aç. (Show first line of the files with "hex editor")')
print('\t4) Tüm dosyaları sırayla "hex editor"de aç. (Open files in order with "hex editor" )')
print()
print()
print('\tGeri (Back) <<b>> , Çıkış (Exit) <<e>>')
tmp = input('\tSeçim (Selection) : ').strip()
if tmp.lower() == 'e':
exit(0)
elif tmp.lower() == 'b':
return
elif tmp.isdigit():
slc = int(tmp)
if slc == 1:
while True:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
office.showFiles()
print()
print()
print('\tGeri (Back) <<b>> , Çıkış (Exit) <<e>>')
tmp2 = input('\tSeçim (Selection) : ').strip()
if tmp2.lower() == 'e':
exit(0)
elif tmp2.lower() == 'b':
break
elif tmp2.isdigit():
slc2 = int(tmp2)
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
office.showSummaryFileHexEditor(index=slc2)
print()
print()
input('\tDevam (Continue) << enter >> : ')
#
elif slc == 2:
while True:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
office.showFiles()
print()
print()
print('\tGeri (Back) <<b>> , Çıkış (Exit) <<e>>')
tmp2 = input('\tSeçim (Selection) : ').strip()
if tmp2.lower() == 'e':
exit(0)
elif tmp2.lower() == 'b':
break
elif tmp2.isdigit():
slc2 = int(tmp2)
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
office.showFileHexEditor(index=slc2)
print()
print()
input('\tDevam (Continue) << enter >> : ')
#
elif slc == 3:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
office.showSummaryHexAllFiles()
print()
print()
input('\tDevam (Continue) << enter >> : ')
#
elif slc == 4:
screenClear()
office.showHexAllFiles()
#
def sub_menu6(office:Office):
while True:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
print()
office.showFiles()
print()
print()
print('\tGeri (Back) <<b>> , Çıkış (Exit) <<e>>')
tmp2 = input('\tSeçim (Selection) : ').strip()
if tmp2.lower() == 'e':
exit(0)
elif tmp2.lower() == 'b':
return
elif tmp2.isdigit():
slc2 = int(tmp2)
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
print()
office.saveFile(index=slc2)
print()
print()
input('\tDevam (Continue) << enter >> : ')
def sub_menu7(office:Office):
while True:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
print()
print('\t **** MENU **** ')
print('\t-----------------------')
print('\t1) Metadata bilgilerini göster. (Show metadata infos)')
print('\t2) Metadata bilgilerini sil. (Delete metadata infos)')
print()
print()
print('\tGeri (Back) <<b>> , Çıkış (Exit) <<e>>')
tmp = input('\tSeçim (Selection) : ').strip()
if tmp.lower() == 'e':
exit(0)
elif tmp.lower() == 'b':
return
elif tmp.isdigit():
slc= int(tmp)
if slc == 1:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
print()
office.showMetadata()
print()
print()
input('\tDevam (Continue) << enter >> : ')
elif slc == 2:
screenClear()
print()
print()
print('\t File name : "{}" '.format(office.getOfficeFileName()))
print()
print()
res, name =office.deleteMetaData()
if res:
print('\t"{}" dosya kaydedildi. (Save the file)'.format(name))
print('\tİşlem başarılı. (Successful operation)')
print()
print()
input('\tDevam (Continue) << enter >> : ')
##### main func #####
def main():
while True:
slc1 = menu0()
if slc1 == 1:
menu1()
elif slc1 == 2:
menu2()
elif slc1 == 3:
menu3()
##### #####
main()