-
Notifications
You must be signed in to change notification settings - Fork 238
/
startQTback.py.txt
1006 lines (840 loc) · 37.4 KB
/
startQTback.py.txt
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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
from PyQt4.QtGui import *
from PyQt4.QtCore import *
import sys
import time
import os
import tkMessageBox
sys.path.append("./src/images")
sys.path.append("./UI")
if sys.path[0] =="":
SYSPATH = sys.path[1]
else:
SYSPATH = sys.path[0]
from Ui_MainWindow import Ui_mainWindow
import binascii
import zipfile
from GetMethods import *
from APKInfo import *
from Graph import *
from xdotParser import *
from JAD import *
from newMessageBox import *
from CodeEditor import *
from SearchFilter import *
from FindDialog import *
from CallInOut import *
from CallInOutDialog import *
from ConfigurationDialog import *
from MyThread import *
from ProgressDialog import *
from APKtool import *
class startQT(QMainWindow, Ui_mainWindow):
"""
This is the main class, in which all UI and initializations are finished.
"""
path2method = {} # the dictionary from path to method object
CL = None # the instance of CLASS class
Graph = None # the instance of GraphicsView class
findHistroyList = None # the histroy list for findDialog
callInOut = None # the instance of class CallInOut
apktool = None # the instance of class APKtool
def __init__(self, parent = None):
"""
Constructor
"""
mainWindow=QMainWindow.__init__(self, parent)
self.setupUi(self)
self.mdiArea.addSubWindow(self.win1)
self.mdiArea.addSubWindow(self.win2)
# define a size policy
sizePolicy = QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
# initialize the Java Tab
self.plainTextEdit_java = CodeEditor()
sizePolicy.setHeightForWidth(self.plainTextEdit_java.sizePolicy().hasHeightForWidth())
self.plainTextEdit_java.setSizePolicy(sizePolicy)
self.plainTextEdit_java.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.plainTextEdit_java.setHorizontalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.plainTextEdit_java.setLineWrapMode(QPlainTextEdit.NoWrap)
self.plainTextEdit_java.setCenterOnScroll(False)
self.gridLayout_15.addWidget(self.plainTextEdit_java, 0, 0, 1, 1)
# initialize the Dalvik Tab
self.plainTextEdit_dalvik = CodeEditor()
sizePolicy.setHeightForWidth(self.plainTextEdit_dalvik.sizePolicy().hasHeightForWidth())
self.plainTextEdit_dalvik.setSizePolicy(sizePolicy)
self.plainTextEdit_dalvik.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.plainTextEdit_dalvik.setHorizontalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.plainTextEdit_dalvik.setLineWrapMode(QPlainTextEdit.NoWrap)
self.plainTextEdit_dalvik.setCenterOnScroll(False)
self.gridLayout_12.addWidget(self.plainTextEdit_dalvik, 0, 0, 1, 1)
# initialize the Bytecode Tab
self.plainTextEdit_bytecode = CodeEditor()
sizePolicy.setHeightForWidth(self.plainTextEdit_dalvik.sizePolicy().hasHeightForWidth())
self.plainTextEdit_bytecode.setSizePolicy(sizePolicy)
self.plainTextEdit_bytecode.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.plainTextEdit_bytecode.setHorizontalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.plainTextEdit_bytecode.setLineWrapMode(QPlainTextEdit.NoWrap)
self.plainTextEdit_bytecode.setCenterOnScroll(False)
self.gridLayout_13.addWidget(self.plainTextEdit_bytecode, 0, 0, 1, 1)
# initialize the Smali Tab
self.plainTextEdit_smali = CodeEditor()
sizePolicy.setHeightForWidth(self.plainTextEdit_smali.sizePolicy().hasHeightForWidth())
self.plainTextEdit_smali.setSizePolicy(sizePolicy)
self.plainTextEdit_smali.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.plainTextEdit_smali.setHorizontalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.plainTextEdit_smali.setLineWrapMode(QPlainTextEdit.NoWrap)
self.plainTextEdit_smali.setCenterOnScroll(False)
self.gridLayout_14.addWidget(self.plainTextEdit_smali, 0, 0, 1, 1)
# initialize the Permission Tab
sizePolicy.setHeightForWidth(self.textEdit_permission.sizePolicy().hasHeightForWidth())
self.textEdit_permission.setSizePolicy(sizePolicy)
self.textEdit_permission.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.textEdit_permission.setHorizontalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.textEdit_permission.setLineWrapMode(QTextEdit.NoWrap)
# initialize the Call in/out Tab
# self.Graph = GraphicsView()
# self.Graph.initShow(self.tab_callinout, self.gridLayout_11, self.tabWidget, self.plainTextEdit_dalvik)
sizePolicy.setHeightForWidth(self.textEdit_call.sizePolicy().hasHeightForWidth())
self.textEdit_call.setSizePolicy(sizePolicy)
self.textEdit_call.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.textEdit_call.setHorizontalScrollBarPolicy(Qt.ScrollBarAsNeeded)
self.textEdit_call.setLineWrapMode(QTextEdit.NoWrap)
print "##Intitialize CALLINOUT"
# initialize the CFG Tab's Graph scene
self.Graph = GraphicsView()
self.Graph.initShow(self.tab_cfg, self.gridLayout_11, self.tabWidget, self.plainTextEdit_dalvik)
# Yuan initialize the CFG Tab's Graph scene
# self.Graph = GraphicsView()
# self.Graph.initShow(self.tab, self.gridLayout_11, self.tabWidget, self.plainTextEdit_dalvik)
# set the editor to "read only"
self.plainTextEdit_dalvik.setReadOnly(1)
self.plainTextEdit_java.setReadOnly(1)
self.plainTextEdit_bytecode.setReadOnly(1)
# connect the signal and slot
#yuan: connect back
self.connect(self.back, SIGNAL("clicked()"), self.backon)
self.connect(self.forward, SIGNAL("clicked()"), self.forwardon)
self.connect(self.pushButton, SIGNAL("clicked()"), self.searchAndFilter)
self.connect(self.lineEdit, SIGNAL("editingFinished()"), self.refreshTreeWidget)
self.connect(self.lineEdit, SIGNAL("textChanged()"), self.refreshTreeWidget)
# define the global variable
import Global
Global.GRAPH = self.Graph
#yuan count the number of method called NAV_NO and NAV_P is the current pointed method
Global.NAV_NO = 0
Global.NAV_P = 0
Global.MAINWINDOW = self
# yuan config the flag
Global.CONFIG = {"CFG":1, "Dalvik":1, "Java":1, "Bytecode":1, "Smali":1, "CallIn":1, "CallOut":1, "Permission":1, "Manifest":1}
# initialize the class attribute
self.findHistroyList = QStringList()
@pyqtSignature("")
def on_actNew_triggered(self):
"""
Slot: When the user click the New button, this slot will receive the New signal.
"""
# initialize the class attribute
self.path2method = {}
# create a file dialog to open an apk file
dlg = QFileDialog(self)
filename = dlg.getOpenFileName(self, self.tr("Open APK File"), QString(), self.tr("APK Files(*.apk)"))
if not zipfile.is_zipfile(filename):
msgbox = QMessageBox()
msgbox.setText("Please select the APK file correctly!")
msgbox.setWindowTitle("Warning!")
msgbox.show()
else:
# create a progress dialog to show the progress
# all pre-processing are done in a thread
progress = ProgressDialog()
thread = MyThread(progress, str(filename))
thread.start()
progress.run()
import Global
# judge this APK whether it is valid or invalid
if not Global.APK.isVaildAPK():
msgbox = QMessageBox()
msgbox.setText("This APK is invalid!")
msgbox.setWindowTitle("Error!")
msgbox.exec_()
return
# clear all the last apk's info
self.listWidget_strings.clear()
self.listWidget_classes.clear()
self.Graph.scene.clear()
self.plainTextEdit_dalvik.setPlainText("")
self.plainTextEdit_java.setPlainText("")
self.plainTextEdit_bytecode.setPlainText("")
self.plainTextEdit_smali.setPlainText("")
self.textEdit_permission.setText("")
self.textEdit_call.setText("")
self.textBrowser.setText("")
self.plainTextEdit_dalvik.reset()
# start to show some infomation of the apk
self.Tab_APKInfo(Global.APK)
self.Tab_Methods(Global.APK, Global.VM, Global.VMX)
self.Tab_Strings()
self.Tab_Classes()
print "Before show information"
if Global.CONFIG["Java"] == 1:
self.Tab_Files(str(filename))
else:
self.treeWidget_files.clear()
if Global.CONFIG["Smali"] ==1 or Global.CONFIG["Manifest"] ==1:
print "config to show apktool"
self.apktool = APKtool()
if Global.CONFIG["CallIn"] == 1 or Global.CONFIG["CallOut"] == 1:
methodInvokeList = self.CL.get_methodInvoke()
self.callInOut = CallInOut(methodInvokeList)
else:
self.textEdit_call.setText("")
if Global.CONFIG["Permission"] == 1:
self.Tab_Permission()
else:
self.textEdit_permission.setText("")
if Global.CONFIG["Manifest"] ==1:
self.Tab_Manifest()
else:
self.textBrowser.setText("")
self.tabWidget_2.setCurrentIndex(4)
self.tabWidget.setCurrentIndex(7)
##################################################
#yuan Navigation_Back:
@pyqtSignature("")
def backon(self):
import linecache
import Global
print "actionbackactionback"
if Global.NAV_P == 0 or Global.NAV_P == 1:
print "no history!"
# tkMessageBox.showinfo(title = "error", message = "no history!")
else:
linecache.clearcache()
Global.NAV_P -= 1
i = 2*Global.NAV_P
print "NAV_P="
print Global.NAV_P
print "NAV_NO="
print Global.NAV_NO
# method = self.path2method[1]
pathindex = linecache.getline('1.txt',i-1)
pathindex = pathindex.strip()
classname = linecache.getline('1.txt',i)
classname = classname[:-1]
print "get from 1.txt"
print pathindex
print classname
method = self.path2method[pathindex]
print "the type of method is %s, the type of classname is %s" %(type(method),type(classname))
self.displayMethod(method,classname)
print method
print classname
def forwardon(self):
import linecache
import Global
print "actionforward"
if Global.NAV_P == Global.NAV_NO:
print "no method forward!"
else:
linecache.clearcache()
Global.NAV_P += 1
i = 2*Global.NAV_P
classname = linecache.getline('1.txt',i)
pathindex = linecache.getline('1.txt',i-1)
pathindex = pathindex.strip()
classname = linecache.getline('1.txt',i)
classname = classname[:-1]
print "get from 1.txt"
print pathindex
print classname
method = self.path2method[pathindex]
print "the type of method is %s, the type of classname is %s" %(type(method),type(classname))
self.displayMethod(method,classname)
print method
print classname
##################################################
#Tab_APKInfo:
# build the APKInfo Tab
##################################################
def Tab_APKInfo(self, apk):
print "enter APKinfo"
self.textEdit_receivers = QTextEdit()
self.textEdit_receivers.setText(apk.getReceivers()[0])
self.textEdit_services = QTextEdit()
self.textEdit_services.setText(apk.getServices()[0])
self.textEdit_permissions = QTextEdit()
self.textEdit_permissions.setText(apk.getPermissions()[0])
# get the number of lines
num_receivers = apk.getReceivers()[1]
num_services = apk.getServices()[1]
num_permissions = apk.getPermissions()[1]
# set the default height of textedit widget
self.textEdit_receivers.setFixedHeight(25*num_receivers)
self.textEdit_services.setFixedHeight(25*num_services)
self.textEdit_permissions.setFixedHeight(25*num_permissions)
# add these items to the tableWidget. the last three items is the textEdits as cell widgets
self.tableWidget_apkinfo.setItem(0, 0, QTableWidgetItem(apk.getFilename()))
self.tableWidget_apkinfo.setItem(1, 0, QTableWidgetItem(apk.getVersionCode()))
self.tableWidget_apkinfo.setItem(2, 0, QTableWidgetItem(apk.getVersionName()))
self.tableWidget_apkinfo.setItem(3, 0, QTableWidgetItem(apk.getPackage()))
self.tableWidget_apkinfo.setCellWidget(4, 0, self.textEdit_receivers)
self.tableWidget_apkinfo.setCellWidget(5, 0, self.textEdit_services)
self.tableWidget_apkinfo.setCellWidget(6, 0, self.textEdit_permissions)
# resize the tableWidget for adjusting to the content
self.tableWidget_apkinfo.resizeColumnsToContents()
self.tableWidget_apkinfo.resizeRowsToContents()
def Tab_Methods(self, a, vm, vmx):
"""
Build the Method Tab
@params: the apk, its vm and vmx from Global varibales
"""
self.CL = CLASS(a, vm, vmx)
classes = self.CL.get_class()
maxdepth = self.CL.get_maxdepth()
self.treeWidget_methods.clear()
self.treeWidget_methods.setColumnCount(2)
classlist = self.CL.get_classlist()
classlist.sort() # sort the classname list
pathdir = {}
pathlist = {}
for i in range(0, maxdepth):
pathdir[i] = ""
pathlist[i] = ""
for classname in classlist:
methodlist = self.CL.get_methods_class(classname)
if methodlist == []:
continue
flag = 0
slice = classname.split("/")
for i in range(0, len(slice)-1):
if slice[i] == pathlist[i]:
if flag == 0:
continue
else:
flag = 1
if i == 0:
child = QTreeWidgetItem(self.treeWidget_methods)
child.setText(0, slice[i])
child.setIcon(0, QIcon("src/images/closed_folder_blue.png"))
pathdir[i] = child
pathlist[i] = slice[i]
else:
child = QTreeWidgetItem(pathdir[i-1])
child.setText(0, slice[i])
child.setIcon(0, QIcon("src/images/closed_folder_blue.png"))
pathdir[i] = child
pathlist[i] = slice[i]
if flag == 0:
child = QTreeWidgetItem(pathdir[i])
child.setText(0, slice[-1])
child.setIcon(0, QIcon("src/images/closed_folder_blue.png"))
else:
child = QTreeWidgetItem(child)
child.setText(0, slice[-1])
child.setIcon(0, QIcon("src/images/closed_folder_blue.png"))
# add the node child items, which are methods.
# it must add this index for identifying the function polymorphism
index = 0
for m in methodlist:
# build a gloal dir from classname+methodname path to method obj
self.path2method[classname + m._name + str(index)] = m
index = index + 1
methodname = self.CL.get_methodname(m)
childMethod = QTreeWidgetItem(child)
childMethod.setText(0, methodname)
childMethod.setIcon(0, QIcon("src/images/file.png"))
# create a connect between signal and slot.
self.connect(self.treeWidget_methods, SIGNAL("itemDoubleClicked(QTreeWidgetItem *, int)"), self.locateMethod)
pheader = self.treeWidget_methods.header()
pheader.setResizeMode(3)
pheader.setStretchLastSection(0)
self.treeWidget_methods.setStyleSheet("QTreeView::item:hover{background-color:rgb(0,255,0,50)}"
"QTreeView::item:selected{background-color:rgb(255,0,0,100)}")
self.treeWidget_methods.setSelectionBehavior(QAbstractItemView.SelectItems)
# after locating the method, get the content for Tab_Dalvik, Tab_CFG, Tab_Bytecode,Tab_CallInOut and Tab_Smali
def displayMethod(self,method,classname):
import Global
print "new new"
print classname
if Global.CONFIG["Dalvik"] ==1:
self.Tab_Dalvik(method)
else:
self.plainTextEdit_dalvik.setPlainText("")
if Global.CONFIG["CFG"] == 1:
self.Tab_CFG(method)
self.tabWidget.setCurrentIndex(0)
else:
self.Graph.scene.clear()
#yuan display the call graph
if Global.CONFIG["CallIn"] == 1 or Global.CONFIG["CallOut"] == 1:
self.Tab_CallInOut(method)
else:
self.textEdit_call.setText("")
if Global.CONFIG["Smali"] == 1:
print "enter show smali"
if self.apktool.successFlag == 1:
self.Tab_Smali(classname)
else:
self.plainTextEdit_smali.setPlainText("")
if Global.CONFIG["Bytecode"] == 1:
self.Tab_Bytecode(method)
else:
self.plainTextEdit_bytecode.setPlainText("")
def locateMethod(self, item, index):
"""
Locate the method, which has been clicked.
@param item : the QtreeWidgetItem object
@param index : the QtreeWidgetItem object's index.
"""
if item.childCount() != 0:
return
else:
methodname = item.text(index)
parentlist = []
classname = ""
parent = item.parent()
while parent :
parentlist.append(parent.text(index))
parent = parent.parent()
for i in reversed(parentlist):
if i == parentlist[0]:
classname += i
else:
classname += i + "/"
path = classname + methodname
index = item.parent().indexOfChild(item)
method = self.path2method[str(path) + str(index)]
print "orignial original"
import Global
if Global.NAV_NO == 0:
file = open('1.txt','w')
file.close
Global.NAV_NO += 1
Global.NAV_P += 1
file = open('1.txt','a')
# file.write("%s\n" % method)
pathindex = str(path) + str(index)
file.write("%s\n" % pathindex)
file.write("%s\n" % classname)
file.close
print "the type of method is %s, the type of classname is %s" %(type(method),type(classname))
print "the path is "
print "%s\n" %(str(path) + str(index))
print "the classname is "
print classname
self.displayMethod(method,classname)
#yuan record item and index
def Tab_Dalvik(self, method):
"""
build the Dalvik Tab
@param method : the method which is onclicked
"""
dalvikContent = ""
code = method.get_code()
# judge the flag for the last method.
# if the flag is 1(the last method has a annotation), then save the last annotation.
if self.plainTextEdit_dalvik.currentMethod != None:
if self.plainTextEdit_dalvik.methodOpened2AnnotationFlag[self.plainTextEdit_dalvik.currentMethod] == 1:
self.plainTextEdit_dalvik.saveAnnotation()
# judge the flag for the last method.
# if the flag is 1(the last method has a renaming table), then save the last renaming table and new renamed codes.
if self.plainTextEdit_dalvik.currentMethod != None:
if self.plainTextEdit_dalvik.methodOpened2RenamingFlag[self.plainTextEdit_dalvik.currentMethod] == 1:
self.plainTextEdit_dalvik.saveRenamingTable()
self.plainTextEdit_dalvik.saveNewCodes()
# then write the current method's dalvik codes.
if code == None:
self.plainTextEdit_dalvik.setPlainText("")
# if the current method's dalvik codes don't have new renamed codes, then get the original codes.
elif not self.plainTextEdit_dalvik.method2NewCodes.has_key(method):
bc = code.get_bc()
idx = 0
for i in bc.get():
dalvikContent += "0x%x" % idx + " "
dalvikContent += i.show_buff(idx) + "\n"
idx += i.get_length()
self.plainTextEdit_dalvik.setPlainText(dalvikContent)
# if the current method' dalvik codes have new renamed codes, then get the new codes
else:
self.plainTextEdit_dalvik.setPlainText(self.plainTextEdit_dalvik.method2NewCodes[method])
# add the current opened method to the methodOpened2AnnotationFlag dict
self.plainTextEdit_dalvik.addOpenedMethod(method)
# if flag is 1, it means that it has created a annotation editor.
# it will set the annotation editor to be hidden
if self.plainTextEdit_dalvik.flag ==1:
self.plainTextEdit_dalvik.annotationDockWidget.setVisible(0)
# reset the firstOpenFlag when openning a new method
self.plainTextEdit_dalvik.firstOpenFlag = 0
# if flag is 1, it means that it has created a renaming table.
# it will set the renaming table to be hidden
if self.plainTextEdit_dalvik.flagRenaming ==1:
self.plainTextEdit_dalvik.renamingDockWidget.setVisible(0)
# reset the firstRenameFlag when openning a new method
self.plainTextEdit_dalvik.firstRenameFlag = 0
def Tab_Classes(self):
"""
build the Classes Tab
"""
Classes = self.CL.vm.get_classes_names()
for c in Classes:
listItem = QListWidgetItem(c, self.listWidget_classes)
listItem.setFlags(Qt.ItemIsEditable | Qt.ItemIsSelectable | Qt.ItemIsEnabled)
def Tab_Strings(self):
"""
build the Strings Tab
"""
Strings = self.CL.vm.get_strings()
for s in Strings:
listItem = QListWidgetItem(s, self.listWidget_strings)
listItem.setFlags(Qt.ItemIsEditable | Qt.ItemIsSelectable | Qt.ItemIsEnabled)
def Tab_Bytecode(self, method):
"""
build the Bytecode Tab
@param method : the method which is onclicked
"""
bytecode = ""
code = method.get_code()
# judge the flag for the last method.
# if the flag is 1(the last method has a annotation), then save the last annotation.
if self.plainTextEdit_bytecode.currentMethod != None:
if self.plainTextEdit_bytecode.methodOpened2AnnotationFlag[self.plainTextEdit_bytecode.currentMethod] == 1:
self.plainTextEdit_bytecode.saveAnnotation()
if code == None:
self.plainTextEdit_bytecode.setPlainText("")
else:
bc = code.get_bc()
idx = 0
for i in bc.get():
bytecode += "0x%x" % idx + " "
raw = i.get_raw()
c = binascii.hexlify(raw)
raw = ""
while c:
f = c[0:2]
raw += "\\x" + f
c = c[2:]
bytecode += raw + "\n"
idx += i.get_length()
self.plainTextEdit_bytecode.setPlainText(bytecode)
# add the current opened method to the methodOpened2AnnotationFlag dict
self.plainTextEdit_bytecode.addOpenedMethod(method)
# if flag is 1, it means that it has created a annotation editor.
# it will set the annotation editor to be hidden
if self.plainTextEdit_bytecode.flag ==1:
self.plainTextEdit_bytecode.annotationDockWidget.setVisible(0)
# reset the firstOpenFlag when openning a new method
self.plainTextEdit_bytecode.firstOpenFlag = 0
def Tab_CFG(self, method):
"""
build the CFG Tab
@param method: the method which is onclicked
"""
if method.get_code() == None:
self.Graph.scene.clear()
return
import Global
xdot = XDot(method, Global.VM, Global.VMX)
xdot.method2xdot()
[pagesize, nodeList, linkList] = xdot.parse()
self.Graph.setPageSize(pagesize)
self.Graph.show(nodeList, linkList)
# yuan build the call graph tab
def Tab_Files(self, filename):
"""
build the Files Tab
@param filename: the opened apk's filename
"""
print "enter tabfiles"
self.treeWidget_files.clear()
self.treeWidget_files.setColumnCount(2)
# create a connect between signal and slot.
self.connect(self.treeWidget_files, SIGNAL("itemDoubleClicked(QTreeWidgetItem *, int)"), self.locateFile)
pheader = self.treeWidget_files.header()
pheader.setResizeMode(3)
pheader.setStretchLastSection(0)
self.treeWidget_files.setStyleSheet("QTreeView::item:hover{background-color:rgb(0,255,0,50)}"
"QTreeView::item:selected{background-color:rgb(255,0,0,100)}")
import Global
for i in range(100):
time.sleep(100)
print "########still ded"
print i
if Global.FLAG_JAD == 1:
print "ded finish"
break
# while True:
# time.sleep(100)
# i=i+1
# print "########still ded"
# if Global.FLAG_JAD == 1:
# break
# if Global.FLAG_JAD != 1:
# return
rootpath = SYSPATH + "/temp/java"
parent = self.treeWidget_files
path2parent = {rootpath:parent}
for root, dirs, files in os.walk(rootpath):
for f in files:
parent = path2parent[root]
child = QTreeWidgetItem(parent)
child.setText(0, f)
for d in dirs:
parent = path2parent[root]
child = QTreeWidgetItem(parent)
child.setText(0, d)
path2parent[root + "/" +d] = child
##################################################
#locateFile:
# locate the Java file, which has been clicked
##################################################
def locateFile( self, item, index):
"""
locate the Java file, which has been clicked
@param item: the QTreeWidgetItem object
@param index: the QTreeWidgetItem index
"""
if item.childCount() != 0:
return
else:
filename = item.text(index)
parentlist = []
path = ""
parent = item.parent()
while parent :
parentlist.append(parent.text(index))
parent = parent.parent()
for i in reversed(parentlist):
if i == parentlist[0]:
path += i
else:
path += i + "/"
inputpath = SYSPATH + "/temp/java/" + path + "/" + filename
try:
data = open(inputpath, "r").read()
except IOError:
print "IOError"
data = None
self.Tab_Java(data)
self.tabWidget.setCurrentIndex(4)
def Tab_Java(self, javacode):
"""
Build the Java Tab
"""
if javacode == None:
self.plainTextEdit_java.setPlainText("")
else:
self.plainTextEdit_java.setPlainText(javacode)
def Tab_Manifest(self):
"""
Build the Manifest Tab
"""
[flag, data] = self.apktool.getManifest()
if flag == 1:
# set the code for Chinese
tc = QTextCodec.codecForName("utf8")
QTextCodec.setCodecForCStrings(tc)
self.textBrowser.setText(data)
def Tab_Smali(self, classname):
"""
Build the Smali Tab
@param classname : the class's name of the method which is onclicked
"""
# judge the flag for the last class.
# if the flag is 1(the last class has a annotation), then save the last annotation.
[flag, data] = self.apktool.getSmaliCode(classname)
if flag == 0:
pass
elif flag == 1:
self.plainTextEdit_smali.setPlainText(data)
def Tab_Permission(self):
"""
Build the Permission Tab
"""
permissionContent = ""
permissionDict = self.CL.get_permission()
for permission in permissionDict.keys():
APILocationList = permissionDict[permission]
permissionContent += "*******************************"
permissionContent += "Permission: "
permissionContent += permission
permissionContent += "*******************************"
permissionContent += "\n\n"
for api in APILocationList:
li = api.split(" ---> ")
APIName = li[1]
methodName = li[0][:li[0].index(" (@")]
where = li[0][li[0].rindex("("):]
permissionContent += "API: " + APIName + "\n"
permissionContent += "Method: " + methodName + "\n"
permissionContent += "Where: " + where + "\n\n"
self.textEdit_permission.setText(permissionContent)
def Tab_CallInOut(self, method):
"""
Build the CallInOut Tab
@param method: the method whose call in/out methods you'd like to view.
"""
callInContent = "************************Call In*************************\n"
callOutContent = "***********************Call Out************************\n"
className = method.get_class_name()
methodName = method.get_name()
descriptor = method.get_descriptor()
callMethod = className + " " + descriptor + "," + methodName
callInList = []
callOutList = []
import Global
if Global.CONFIG["CallIn"] == 1:
callInList= self.callInOut.searchCallIn(callMethod)
if Global.CONFIG["CallOut"] == 1:
callOutList = self.callInOut.searchCallOut(callMethod)
for i in callInList:
temp = i.split("^")
callInContent += temp[0] + " ("+ temp[1] + ")" + "\n"
for i in callOutList:
temp = i.split("^")
callOutContent += temp[0] + " (" + temp[1] + ")" + "\n"
self.textEdit_call.setText(callInContent + "\n\n\n" + callOutContent)
if method.get_code() == None:
self.Graph.scene.clear()
return
import Global
xdot = XDot(method, Global.VM, Global.VMX)
xdot.method2xdot()
[pagesize, nodeList, linkList] = xdot.parse()
self.Graph.setPageSize(pagesize)
self.Graph.show(nodeList, linkList)
def searchAndFilter(self):
"""
search or filter the method/class/string in the line Edit.
"""
target = self.lineEdit.text()
option = 0
if self.radioButton_filter.isChecked():
option = 1
elif self.radioButton_search.isChecked():
option = 2
currentIndex = self.tabWidget_2.currentIndex()
if currentIndex not in [0, 1, 2, 3]:
return
if currentIndex == 3:
searchFilter = SearchFilter(self.treeWidget_methods, target)
elif currentIndex == 2:
searchFilter = SearchFilter(self.listWidget_classes, target)
elif currentIndex == 1:
searchFilter = SearchFilter(self.listWidget_strings, target)
elif currentIndex == 0:
searchFilter = SearchFilter(self.treeWidget_files, target)
if option == 1:
if currentIndex == 3 or currentIndex == 0:
searchFilter.filter_treewidget()
elif currentIndex == 2 or currentIndex == 1:
searchFilter.filter_listwidget()
elif option ==2:
if currentIndex == 3 or currentIndex == 0:
searchFilter.search_treewidget()
elif currentIndex == 2 or currentIndex == 1:
searchFilter.search_listwidget()
def refreshTreeWidget(self):
"""
refresh the tabWidget_2, which is a QTreeWidget object
"""
if self.tabWidget_2.currentIndex() == 3:
it = QTreeWidgetItemIterator(self.treeWidget_methods)
while it.value():
item = it.value()
item.setHidden(0)
item.setSelected(0)
it = it.__iadd__(1)
elif self.tabWidget_2.currentIndex() == 0:
it = QTreeWidgetItemIterator(self.treeWidget_files)
while it.value():
item = it.value()
item.setHidden(0)
item.setSelected(0)
it = it.__iadd__(1)
elif self.tabWidget_2.currentIndex() == 1:
total = self.listWidget_strings.count()
for i in range(0, total):
item = self.listWidget_strings.item(i)
item.setHidden(0)
item.setSelected(0)
elif self.tabWidget_2.currentIndex() == 2:
total = self.listWidget_classes.count()
for i in range(0, total):
item = self.listWidget_classes.item(i)
item.setHidden(0)
item.setSelected(0)
@pyqtSignature("")
def on_About_triggered(self):
"""
Slot: show the infomation about this software when the user clicks the About option.
"""
self.msgbox = newMessageBox()
self.msgbox.setText("APKinspector\n\nAuthor: CongZheng(CN)\nMentor: Ryan W Smith(US), Anthony Desnos(FR)\nSupported by the Honeynet Project and Gsoc2011")
self.msgbox.setWindowTitle("About")
pixmap = QPixmap("./src/images/logo.png")
pixmap = pixmap.scaled(100, 100, Qt.KeepAspectRatio)
self.msgbox.setIconPixmap(pixmap)
self.msgbox.exec_()
@pyqtSignature("")
def on_actFind_triggered(self):
"""
Slot: Find the word or sentence in tabs: Dalvik, Bytecode, Smali, Java
"""
index2widget = {1:self.plainTextEdit_dalvik, 2:self.plainTextEdit_bytecode, 3:self.plainTextEdit_smali, 4:self.plainTextEdit_java}
index = self.tabWidget.currentIndex()
if index not in index2widget.keys():
return
widget = index2widget[index]
cursor = widget.textCursor()
selectedText = cursor.selectedText()
findDialog = FindDialog(self)
findDialog.setWidget(widget)
findDialog.setFindHistroyList(self.findHistroyList)
findDialog.comboBox.setEditText(selectedText)
findDialog.exec_()
self.findHistroyList = findDialog.findHistroyList
@pyqtSignature("")
def on_actCall_in_out_triggered(self):
"""
Slot: show the call in/out methods
"""
callInOutDialog = CallInOutDialog()
callInOutDialog.exec_()
callInContent = "************************Call In*************************\n"
callOutContent = "***********************Call Out************************\n"
callInList = []
callOutList = []
callMethod = callInOutDialog.callMethod
if callInOutDialog.callInFlag == 1:
print "enter callin"
callInList= self.callInOut.searchCallIn(callMethod)
if callInOutDialog.callOutFlag == 1:
print "enter callout"
callOutList = self.callInOut.searchCallOut(callMethod)
for i in callInList:
temp = i.split("^")
callInContent += temp[0] + " ("+ temp[1] + ")" + "\n"
for i in callOutList:
temp = i.split("^")
callOutContent += temp[0] + " (" + temp[1] + ")" + "\n"
self.textEdit_call.setText(callInContent + "\n\n\n" + callOutContent)
@pyqtSignature("")
def on_actConfiguration_triggered(self):
"""
Slot: show the configuration dialog
"""
configDialog = ConfigurationDialog()
configDialog.exec_()
@pyqtSignature("")
def on_actQuit_triggered(self):
"""
Slot: quit the application
"""
sys.exit()