forked from broodplank/APKtoJava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
APKtoJava.au3
750 lines (567 loc) · 31.7 KB
/
APKtoJava.au3
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
#NoTrayIcon
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=apktojavaicon_trans.ico
#AutoIt3Wrapper_Outfile=APKtoJava.exe
#AutoIt3Wrapper_Outfile_x64=APKtoJava_x64.exe
#AutoIt3Wrapper_UseUpx=n
#AutoIt3Wrapper_Res_Description=©2014 broodplank.net
#AutoIt3Wrapper_Res_Fileversion=0.0.3.0
#AutoIt3Wrapper_Run_Tidy=y
#AutoIt3Wrapper_Run_Obfuscator=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
;No tray icon
;Match window titles by any substring matched
Opt("WinTitleMatchMode", 2)
;Includes
#include <Process.au3>
#include <File.au3>
#include <WindowsConstants.au3>
#include <GuiConstantsEx.au3>
#include <ExtProp.au3>
#include <WinAPI.au3>
#include <EditConstants.au3>
#include <ComboConstants.au3>
#include <Constants.au3>
EnvSet("path", EnvGet("path") & ";" & @ScriptDir)
;Include splash image in exe
FileInstall("splash.jpg", @TempDir & "\splash.jpg", 1)
;Show splash
$splash = GUICreate("Loading...", 400, 100, -1, -1, $WS_POPUPWINDOW)
GUICtrlCreatePic(@TempDir & "\splash.jpg", 0, 0, 400, 100)
WinSetTrans($splash, "", 0)
GUISetState(@SW_SHOW, $splash)
For $i = 0 To 255 Step 6
WinSetTrans($splash, "", $i)
Sleep(1)
Next
;Make jd-gui.cfg (ini)
FixConfig()
;Check for files
If Not FileExists(@ScriptDir & "\tools") Then
MsgBox(16, "APK to Java", "Missing tools folder, please reinstall the application and try again!")
Exit
EndIf
If Not FileExists(@ScriptDir & "\tools\7za.exe") Then
MsgBox(16, "APK to Java", "Missing 7za.exe, please reinstall the application and try again!")
Exit
EndIf
If Not FileExists(@ScriptDir & "\tools\aapt.exe") Then
MsgBox(16, "APK to Java", "Missing aapt.exe, please reinstall the application and try again!")
Exit
EndIf
If Not FileExists(@ScriptDir & "\tools\apktool.jar") Then
MsgBox(16, "APK to Java", "Missing apktool.jar, please reinstall the application and try again!")
Exit
EndIf
If Not FileExists(@ScriptDir & "\tools\baksmali-2.0.3.jar") Then
MsgBox(16, "APK to Java", "Missing baksmali-2.0.3.jar, please reinstall the application and try again!")
Exit
EndIf
If Not FileExists(@ScriptDir & "\tools\jd-gui.exe") Then
MsgBox(16, "APK to Java", "Missing jd-gui.exe, please reinstall the application and try again!")
Exit
EndIf
If Not FileExists(@ScriptDir & "\tools\lib") Then
MsgBox(16, "APK to Java", "Missing tools\lib folder, please reinstall the application and try again!")
Exit
EndIf
If Not FileExists(@ScriptDir & "\tools\dex2jar.bat") Then
MsgBox(16, "APK to Java", "Missing dex2jar.bat, please reinstall the application and try again!")
Exit
EndIf
If Not FileExists(@ScriptDir & "\tools\setclasspath.bat") Then
MsgBox(16, "APK to Java", "Missing setclasspath.bat, please reinstall the application and try again!")
Exit
EndIf
If Not FileExists(@ScriptDir & "\tools\jad.exe") Then
MsgBox(16, "APK to Java", "Missing jad.exe, please reinstall the application and try again!")
Exit
EndIf
Sleep(500)
GUIDelete($splash)
;Write INI
Func FixConfig()
Sleep(500)
$localdir = String(@ScriptDir & "\tools\")
If FileExists(@ScriptDir & "\tools\jd-gui.cfg") Then FileDelete(@ScriptDir & "\tools\jd-gui.cfg")
IniWrite(@ScriptDir & "\tools\jd-gui.cfg", "RecentDirectories", "LoadPath", StringReplace($localdir, "\", "\\", 0))
IniWrite(@ScriptDir & "\tools\jd-gui.cfg", "RecentDirectories", "SavePath", StringReplace($localdir, "\", "\\", 0))
IniWrite(@ScriptDir & "\tools\jd-gui.cfg", "Manifest", "Version", "2")
IniWrite(@ScriptDir & "\tools\jd-gui.cfg", "Update", "CurrentVersion", "0.3.6")
IniWrite(@ScriptDir & "\tools\jd-gui.cfg", "RecentFiles", "Path0", StringReplace($localdir, "\", "\\", 0) & "classes_dex2jar.jar")
EndFunc ;==>FixConfig
;Declare Globals
Global $getpath_apkjar, $getpath_classes, $getpath_outputdir, $log, $decompile_eclipse, $decompile_resource, $decompile_source_java, $decompile_source_smali, $failparam, $javaeror, $resourcerror
Local $interval
$interval = IniRead(@ScriptDir & "\config.ini", "options", "interval", "250")
;StringSearchInFile func
Func _StringSearchInFile($file, $qry)
If FileExists(@TempDir & "\results.txt") Then FileDelete(@TempDir & "\results.txt")
_RunDos("find /n /i " & Chr(34) & $qry & Chr(34) & " " & Chr(34) & $file & Chr(34) & " >> " & @TempDir & "\results.txt")
If Not @error Then
FileSetAttrib(@TempDir & "\results.txt", "-N+H+T", 0)
$CHARS = FileGetSize(@TempDir & "\results.txt")
Return FileRead(@TempDir & "\results.txt", $CHARS) & @CRLF
EndIf
EndFunc ;==>_StringSearchInFile
;ExtractAPK
Func _ExtractAPK($apkfile)
GUICtrlSetData($log, "APK to Java RC3 Initialized...." & @CRLF & "------------------------------------------" & @CRLF)
FileDelete(@ScriptDir & "\tools\classes.dex")
_AddLog("- Extracting APK...")
FileCopy($getpath_apkjar, @ScriptDir & "\tools\" & _GetExtProperty($getpath_apkjar, 0))
FileCopy(@ScriptDir & "\tools\" & _GetExtProperty($getpath_apkjar, 0), @ScriptDir & "\tools\" & _GetExtProperty($getpath_apkjar, 0) & ".zip", 1)
RunWait(@ComSpec & " /c " & "7za.exe x -y " & _GetExtProperty($getpath_apkjar, 0) & ".zip *.dex", @ScriptDir & "\tools", @SW_HIDE)
_AddLog("- Extracting APK Done!")
If GUICtrlRead($decompile_resource) = 1 Then _DecompileResource()
If FileExists(@ScriptDir & "\tools\classes.dex") Then
If GUICtrlRead($decompile_source_smali) = 1 Then _DecompileSmali()
If GUICtrlRead($decompile_source_java) = 1 Then _DecompileJava()
Else
$failparam = "noclasses"
_AddLog(@CRLF & "ERROR: No classes.dex file found! Aborting..." & @CRLF)
EndIf
If GUICtrlRead($decompile_eclipse) = 1 Then _MakeEclipse()
EndFunc ;==>_ExtractAPK
;Decompile Smali
Func _DecompileSmali()
If FileExists(@ScriptDir & "\tools\smalicode") Then DirRemove(@ScriptDir & "\tools\smalicode", 1)
_AddLog("- Decompiling to Smali code...")
RunWait(@ComSpec & " /c " & "java -jar baksmali-2.0.3.jar -o smalicode/ classes.dex", @ScriptDir & "\tools", @SW_HIDE)
_AddLog("- Decompiling to Smali Done!")
_AddLog("- Copying to output dir...")
DirCopy(@ScriptDir & "\tools\smalicode", $getpath_outputdir & "\smalicode", 1)
_AddLog("- Copying to output dir Done!")
EndFunc ;==>_DecompileSmali
;Decompile Java
Func _DecompileJava()
$options_app_jad_read = IniRead(@ScriptDir & "\config.ini", "options", "usejad", "0")
$options_app_jdgui_read = IniRead(@ScriptDir & "\config.ini", "options", "usejdgui", "1")
$options_app_jad_deepness_read = IniRead(@ScriptDir & "\config.ini", "options", "jaddeepness", "5")
_AddLog("- Converting classes.dex to classes-dex2jar.jar...")
If FileExists(@ScriptDir & "\tools\classes-dex2jar.src.zip") Then FileDelete(@ScriptDir & "\tools\classes-dex2jar.src.zip")
RunWait(@ScriptDir & "\tools\dex2jar.bat" & " classes.dex", @ScriptDir & "\tools", @SW_HIDE)
If $options_app_jdgui_read = "1" Then
Run(@ScriptDir & "\tools\jd-gui.exe " & Chr(34) & @ScriptDir & "\tools\classes-dex2jar.jar" & Chr(34), @ScriptDir & "\tools", @SW_SHOW)
WinWaitActive("Java Decompiler - classes-dex2jar.jar", "")
WinSetTrans("Java Decompiler - classes-dex2jar.jar", "", 0)
ControlSend("Java Decompiler - classes-dex2jar.jar", "", "", "^!s")
WinWaitActive("Save")
WinSetTrans("Save", "", 0)
$CLIPSAVE = ClipGet()
ClipPut(@ScriptDir & "\tools\classes-dex2jar.src.zip")
ControlSend("Save", "", "", "^v")
ClipPut($CLIPSAVE)
ControlSend("Save", "", "", "{enter}")
Sleep($interval)
WinWaitClose("Save All Sources", "")
Sleep($interval)
If FileExists(@ScriptDir & "\tools\classes-dex2jar.src.zip") Then
_AddLog("- Generating Java Code Done!")
Else
_AddLog("- Generating Java Code Failed!")
EndIf
_AddLog("- Extracting Java Code....")
RunWait(@ComSpec & " /c " & "7za.exe x -y classes-dex2jar.src.zip -ojavacode", @ScriptDir & "\tools", @SW_HIDE)
Sleep($interval)
_AddLog("- Extracting Java Code Done!")
_AddLog("- Copying Java Code to output dir....")
DirCopy(@ScriptDir & "\tools\javacode", $getpath_outputdir & "\javacode", 1)
_AddLog("- Copying Java Code Done!")
ProcessClose("jd-gui.exe")
EndIf
If $options_app_jad_read = "1" Then
If FileExists(@ScriptDir & "\tools\classcode") Then DirRemove(@ScriptDir & "\tools\classcode", 1)
FileMove(@ScriptDir & "\tools\classes-dex2jar.jar", @ScriptDir & "\tools\classes-dex2jar.jar.zip", 1)
_AddLog("- Extracting class files...")
RunWait(@ComSpec & " /c " & "7za.exe x -y classes-dex2jar.jar.zip -oclasscode", @ScriptDir & "\tools", @SW_HIDE)
_AddLog("- Extracting class files Done!")
_AddLog("- Converting class to java files..." & @CRLF & "(This may take several minutes...)")
If $options_app_jad_deepness_read = 1 Then $dirlevel = "/**/*.class"
If $options_app_jad_deepness_read = 2 Then $dirlevel = "/**/**/*.class"
If $options_app_jad_deepness_read = 3 Then $dirlevel = "/**/**/**/*.class"
If $options_app_jad_deepness_read = 4 Then $dirlevel = "/**/**/**/**/*.class"
If $options_app_jad_deepness_read = 5 Then $dirlevel = "/**/**/**/**/**/*.class"
If $options_app_jad_deepness_read = 6 Then $dirlevel = "/**/**/**/**/**/**/*.class"
If $options_app_jad_deepness_read = 7 Then $dirlevel = "/**/**/**/**/**/**/**/*.class"
If $options_app_jad_deepness_read = 8 Then $dirlevel = "/**/**/**/**/**/**/**/**/*.class"
If $options_app_jad_deepness_read = 9 Then $dirlevel = "/**/**/**/**/**/**/**/**/**/*.class"
If $options_app_jad_deepness_read = 10 Then $dirlevel = "/**/**/**/**/**/**/**/**/**/**/*.class"
$runjad = Run(@ComSpec & " /c " & "jad -o -r -sjava -dclasscodeout classcode" & $dirlevel, @ScriptDir & "\tools", @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)
Local $line
While 1
$line = StderrRead($runjad)
If @error Then ExitLoop
ConsoleWrite($line)
WEnd
_AddLog("- Converting class to java done!")
_AddLog("- Copying Java Code to output dir....")
DirCopy(@ScriptDir & "\tools\classcodeout", $getpath_outputdir & "\javacode", 1)
_AddLog("- Copying Java Code Done!")
EndIf
EndFunc ;==>_DecompileJava
;Decompile Resources
Func _DecompileResource()
If FileExists(@ScriptDir & "\tools\resource") Then DirRemove(@ScriptDir & "\tools\resource")
_AddLog("- Decompiling Resources...")
RunWait(@ComSpec & " /c " & "java -jar " & Chr(34) & @ScriptDir & "\tools\apktool.jar" & Chr(34) & " d -s -f " & _GetExtProperty($getpath_apkjar, 0) & " " & Chr(34) & @ScriptDir & "\tools\resource" & Chr(34), @ScriptDir & "\tools", @SW_HIDE)
_AddLog("- Decompiling Resources Done!")
_AddLog("- Copying to output dir...")
DirCopy(@ScriptDir & "\tools\resource", $getpath_outputdir & "\resource", 1)
_AddLog("- Copying to output dir Done!")
EndFunc ;==>_DecompileResource
;Make Eclipse Project
Func _MakeEclipse()
_AddLog(@CRLF & "- Making Eclipse Project...")
If FileExists($getpath_outputdir & "\eclipseproject") Then DirRemove($getpath_outputdir & "\eclipseproject", 1)
_AddLog("- Extracting Example Project..")
RunWait(@ComSpec & " /c " & "7za.exe x -y " & @ScriptDir & "\tools\eclipseproject.zip -o" & $getpath_outputdir & "\eclipseproject", @ScriptDir & "\tools", @SW_HIDE)
_AddLog("- Importing AndroidManifest.xml...")
FileCopy($getpath_outputdir & "\resource\AndroidManifest.xml", $getpath_outputdir & "\eclipseproject\AndroidManifest.xml", 1)
_AddLog("- Importing Resources...")
DirCopy($getpath_outputdir & "\resource\res", $getpath_outputdir & "\eclipseproject\res", 1)
Sleep($interval)
_AddLog("- Setting Project Name..")
;Local $namearray[1]
$searchname = _StringSearchInFile($getpath_outputdir & "\eclipseproject\AndroidManifest.xml", "package")
$namearray = StringRegExp($searchname, "package=" & Chr(34) & "(.*?)" & Chr(34), 1, 1)
ConsoleWrite($namearray)
;If package name has been found, continue normal procedure
If UBound($namearray) > 0 And $namearray[0] <> "" Then
_FileWriteToLine($getpath_outputdir & "\eclipseproject\.project", 3, " <name>" & $namearray[0] & "</name>")
Else
;In case no package name has been found (very unlikely) use apk name
$lenstring = StringLen(_GetExtProperty($getpath_apkjar, 0))
$nameapk = StringLeft(_GetExtProperty($getpath_apkjar, 0), $lenstring - 3)
_FileWriteToLine($getpath_outputdir & "\eclipseproject\.project", 3, " <name>" & $nameapk & "</name>")
EndIf
_AddLog("- Setting Target SDK...")
Local $tarsdk
;In case no target sdk version has been found, set to API 17 (4.2.2)
$tarsdkarray = StringRegExp(_StringSearchInFile($getpath_outputdir & "\eclipseproject\AndroidManifest.xml", "android:targetSdkVersion"), "android:targetSdkVersion=" & Chr(34) & "(.*?)" & Chr(34), 1, 1)
If UBound($tarsdkarray) == 0 Or $tarsdkarray[0] == "" Then
$tarsdk = "17"
Else
$tarsdk = $tarsdkarray[0]
EndIf
_FileWriteToLine($getpath_outputdir & "\eclipseproject\project.properties", 14, "target=android-" & $tarsdk, 1)
_AddLog("- Importing Java Sources...")
DirCopy($getpath_outputdir & "\javacode\com", $getpath_outputdir & "\eclipseproject\src\com", 1)
_AddLog("- Making Eclipse Project Done!")
EndFunc ;==>_MakeEclipse
;AddLog function
Func _AddLog($string)
$CurrentLog = GUICtrlRead($log)
$NewLog = $CurrentLog & @CRLF & $string
GUICtrlSetData($log, $NewLog)
EndFunc ;==>_AddLog
Func Restart()
Run(@ScriptDir & "\APKtoJava.exe")
EndFunc ;==>Restart
;This version of Apk2Java is used without GUI only with command line parameters.
;It works only with apks and creates eclipse projects.
;param1 - apk to decompile
;param2 - output path
;The progress is stored in the output directory in the Progress.txt file.
$gui = GUICreate("APK to Java Release Candidate 3 - by broodplank", 550, 490)
$filemenu = GUICtrlCreateMenu("&File")
$filemenu_restart = GUICtrlCreateMenuItem("&Restart", $filemenu, 1)
$filemenu_exit = GUICtrlCreateMenuItem("E&xit", $filemenu, 2)
$optionsmenu = GUICtrlCreateMenu("&Options")
$optionsmenu_preferences = GUICtrlCreateMenuItem("&Preferences", $optionsmenu, 1)
$helpmenu = GUICtrlCreateMenu("&Help")
$helpmenu_help = GUICtrlCreateMenuItem("&Open Help File", $helpmenu, 1)
$helpmenu_about = GUICtrlCreateMenuItem("&About", $helpmenu, 2)
$helpmenu_donate = GUICtrlCreateMenuItem("&Donate", $helpmenu, 2)
GUISetFont(8, 8, 0, "Verdana")
GUICtrlCreateLabel("Log:", 305, 5)
$log = GUICtrlCreateEdit("APK to Java RC3 Initialized...." & @CRLF & "------------------------------------------" & @CRLF, 305, 22, 240, 440, BitOR($WS_VSCROLL, $ES_AUTOVSCROLL, $ES_MULTILINE, $ES_READONLY))
GUICtrlCreateGroup("Step 1: Selecting the file", 5, 5, 290, 140)
GUICtrlCreateLabel("Please choose the apk/jar file that you want to " & @CRLF & "decompile to java sources: ", 15, 25)
$file = GUICtrlCreateInput("", 15, 55, 195, 20)
GUICtrlSetState($file, $GUI_DISABLE)
$filebrowse = GUICtrlCreateButton("Browse..", 215, 55, 70, 20)
GUICtrlCreateLabel("Or select a classes.dex file to decompile:", 15, 85)
$filedex = GUICtrlCreateInput("", 15, 110, 195, 20)
GUICtrlSetState($filedex, $GUI_DISABLE)
$filebrowsedex = GUICtrlCreateButton("Browse..", 215, 110, 70, 20)
GUICtrlCreateGroup("Step 2: Selecting the output dir", 5, 150, 290, 85)
GUICtrlCreateLabel("Please choose the destination directory for the" & @CRLF & "decompiled java sources: ", 15, 170)
$destination = GUICtrlCreateInput("", 15, 205, 195, 20)
GUICtrlSetState($destination, $GUI_DISABLE)
$destdirbrowse = GUICtrlCreateButton("Browse..", 215, 205, 70, 20)
GUICtrlCreateGroup("Step 3: Choosing decompilation preferences", 5, 240, 290, 175)
GUICtrlCreateLabel("Please choose the parts to decompile:", 15, 260)
$decompile_source_java = GUICtrlCreateCheckbox("Sources (generate java code)", 15, 280)
$decompile_source_smali = GUICtrlCreateCheckbox("Sources (generate smali code)", 15, 300)
$decompile_resource = GUICtrlCreateCheckbox("Resources (the images/layouts/etc)", 15, 320)
GUICtrlCreateLabel("Additional options:", 15, 350)
$decompile_eclipse = GUICtrlCreateCheckbox("Convert output to an Eclipse project", 15, 370)
$decompile_zip = GUICtrlCreateCheckbox("Make zip archive of output files", 15, 390)
$copyright = GUICtrlCreateLabel("©2014 broodplank.net - All Rights Reserved", 5, 453)
GUICtrlSetStyle($copyright, $WS_DISABLED)
GUISetState()
;Refer to the following about the use of command line parameters:
;http://www.autoitscript.com/autoit3/docs/intro/running.htm#CommandLine
$getpath_apkjar = $CmdLine[1]
If $getpath_apkjar = "" Then
;
Else
If StringInStr(_GetExtProperty($getpath_apkjar, 0), Chr(32), 0, 1) Then
Dim $msgboxfile
$msgboxfile = MsgBox(51, "APK To Java Error", "A space has been found in your apk name" & @CRLF & "This can lead to an invalid output and/or errors" & @CRLF & "The main reason is that DOS doesn't allow you to use spaces" & @CRLF & @CRLF & "Do you want to continue?" & @CRLF & @CRLF & "Press 'Yes' to auto remove the spaces from your apk file name and continue the operation" & @CRLF & "Press 'No' to keep the spaces in the apk name (you will regret it)" & @CRLF & "Press 'Cancel' to cancel operation and set apk field blank.")
If $msgboxfile = 7 Then
GUICtrlSetData($file, _GetExtProperty($getpath_apkjar, 0))
ElseIf $msgboxfile = 2 Then
GUICtrlSetData($file, "")
ElseIf $msgboxfile = 6 Then
$apknospace = StringStripWS(_GetExtProperty($getpath_apkjar, 0), 8)
FileMove($getpath_apkjar, GetDir($getpath_apkjar) & $apknospace)
GUICtrlSetData($file, $apknospace, 0)
$getpath_apkjar = GetDir($getpath_apkjar) & $apknospace
EndIf
Else
GUICtrlSetData($file, _GetExtProperty($getpath_apkjar, 0))
EndIf
If GUICtrlRead($filedex) <> "" Then GUICtrlSetData($filedex, "")
EndIf
$getpath_outputdir = $CmdLine[2]
If $getpath_outputdir = "" Then
GUICtrlSetData($destination, "")
Else
GUICtrlSetData($destination, $getpath_outputdir)
If StringInStr($getpath_outputdir, Chr(32), 1) Then
Dim $msgbox
$msgbox = MsgBox(49, "APK To Java Warning", "A space has been found in your destination directory." & @CRLF & "This can lead to an invalid output." & @CRLF & "Do you want to continue?")
If $msgbox = 1 Then
GUICtrlSetData($destination, $getpath_outputdir)
ElseIf $msgbox = 2 Then
GUICtrlSetData($destination, "")
EndIf
EndIf
EndIf
GUICtrlSetState($decompile_eclipse, $GUI_CHECKED)
GUICtrlSetState($decompile_resource, $GUI_CHECKED)
GUICtrlSetState($decompile_resource, $GUI_DISABLE)
GUICtrlSetState($decompile_source_java, $GUI_CHECKED)
GUICtrlSetState($decompile_source_java, $GUI_DISABLE)
If GUICtrlRead($file) = "" Then
If GUICtrlRead($filedex) = "" Then
MsgBox(0, "APK to Java", "You haven't selected an apk/jar or classes.dex file!")
EndIf
ElseIf GUICtrlRead($destination) = "" Then
MsgBox(0, "APK to Java", "You haven't selected an output directory!")
Else
_ExtractAPK(_GetExtProperty($getpath_apkjar, 0))
If $failparam = "" Then
_AddLog(@CRLF & "The decompilation process is completed!")
_RunDos("explorer " & $getpath_outputdir)
ElseIf $failparam = "noclasses" Then
_AddLog(@CRLF & "Decompilation has been aborted due to missing classes.dex file!")
ElseIf $javaeror = 1 Then
_AddLog(@CRLF & "Making Eclipse project failed because no java decompilation has been selected!")
ElseIf $resourcerror = 1 Then
_AddLog(@CRLF & "Making Eclipse project failed because no resources decompilation has been selected!")
EndIf
_AddLog(@CRLF & "- Cleaning Up...")
DirRemove(@ScriptDir & "\tools\smalicode", 1)
DirRemove(@ScriptDir & "\tools\javacode", 1)
DirRemove(@ScriptDir & "\tools\resource", 1)
DirRemove(@ScriptDir & "\tools\classcode", 1)
DirRemove(@ScriptDir & "\tools\classcodeout", 1)
FileDelete(@ScriptDir & "\tools\" & _GetExtProperty($getpath_apkjar, 0) & ".zip")
FileDelete(@ScriptDir & "\tools\classes-dex2jar.jar")
FileDelete(@ScriptDir & "\tools\classes-dex2jar.src.zip")
FileDelete(@ScriptDir & "\tools\classes-dex2jar.jar.zip")
FileDelete(@ScriptDir & "\tools\classes.dex")
FileDelete(@ScriptDir & "\tools\" & _GetExtProperty($getpath_apkjar, 0))
_AddLog("- Cleaning Done!" & @CRLF)
EndIf
;While 1
; $msg2 = GUIGetMsg()
;
; Select
;
; Case $msg2 = $gui_event_close
; Exit
; EndSelect
;WEnd
;Exit
; #FUNCTION# ======================================================================================================
; Name...........: GetDir
; Description ...: Returns the directory of the given file path
; Syntax.........: GetDir($sFilePath)
; Parameters ....: $sFilePath - File path
; Return values .: Success - The file directory
; Failure - -1, sets @error to:
; |1 - $sFilePath is not a string
; Author ........: Renan Maronni <[email protected]>
; Modified.......:
; Remarks .......: I (broodplank) was to lazy at this moment to write this myself :D
; ==================================================================================================================
Func GetDir($sFilePath)
Local $aFolders = StringSplit($sFilePath, "\")
Local $iArrayFoldersSize = UBound($aFolders)
Local $FileDir = ""
If (Not IsString($sFilePath)) Then
Return SetError(1, 0, -1)
EndIf
$aFolders = StringSplit($sFilePath, "\")
$iArrayFoldersSize = UBound($aFolders)
For $i = 1 To ($iArrayFoldersSize - 2)
$FileDir &= $aFolders[$i] & "\"
Next
Return $FileDir
EndFunc ;==>GetDir
Func _PreferencesMenu()
$optionsGUI = GUICreate("APK to Java Preferences", 520, 215, -1, -1, -1, BitOR($WS_EX_TOOLWINDOW, $WS_EX_MDICHILD), $gui)
GUISetBkColor(0xefefef, $optionsGUI)
GUICtrlCreateGroup("Java Generation Preferences:", 5, 5, 250, 65)
$options_app_jdgui = GUICtrlCreateRadio("Use JD-GUI to make Java Sources", 15, 25)
$options_app_jdgui_read = IniRead(@ScriptDir & "\config.ini", "options", "usejdgui", "")
If $options_app_jdgui_read = 1 Then
GUICtrlSetState($options_app_jdgui, $GUI_CHECKED)
Else
GUICtrlSetState($options_app_jdgui, $GUI_UnChecked)
EndIf
$options_app_jad = GUICtrlCreateRadio("Use JAD to make Java Sources", 15, 45)
$options_app_jad_read = IniRead(@ScriptDir & "\config.ini", "options", "usejad", "")
If $options_app_jad_read = 1 Then
GUICtrlSetState($options_app_jad, $GUI_CHECKED)
Else
GUICtrlSetState($options_app_jad, $GUI_UnChecked)
EndIf
GUICtrlCreateGroup("Java heapsize for decompilation (Java):", 5, 75, 250, 50)
GUICtrlCreateLabel("Heapsize:", 15, 98)
$options_app_heapsize_read = IniRead(@ScriptDir & "\config.ini", "options", "heapsize", "512")
$options_app_heapsize = GUICtrlCreateCombo("", 80, 95, 100, 20, $CBS_DROPDOWNLIST)
GUICtrlSetData($options_app_heapsize, "32|64|128|256|512|1024|2048|4096", $options_app_heapsize_read)
GUICtrlCreateLabel("MB", 190, 98)
GUICtrlCreateGroup("Decompilation directory depth level of JAD:", 5, 130, 250, 50)
GUICtrlCreateLabel("Deepness:", 15, 153)
$options_app_jad_deepness_read = IniRead(@ScriptDir & "\config.ini", "options", "jaddeepness", "5")
$options_app_jad_deepness = GUICtrlCreateCombo("", 80, 150, 100, 20, $CBS_DROPDOWNLIST)
GUICtrlSetData($options_app_jad_deepness, "1|2|3|4|5|6|7|8|9|10", $options_app_jad_deepness_read)
GUICtrlCreateLabel("Directories", 190, 153)
If $options_app_jad_read = 1 Then
GUICtrlSetState($options_app_jad_deepness, $GUI_ENABLE)
Else
GUICtrlSetState($options_app_jad_deepness, $GUI_DISABLE)
EndIf
GUICtrlCreateGroup("Computer Speed / Interval between operations:", 265, 130, 250, 50)
GUICtrlCreateLabel("Interval:", 275, 153)
$options_app_interval_read = IniRead(@ScriptDir & "\config.ini", "options", "interval", "250")
$options_app_interval = GUICtrlCreateCombo("", 340, 150, 100, 20, $CBS_DROPDOWNLIST)
GUICtrlSetData($options_app_interval, "0|50|100|150|200|250|300|350|400|450|500|550|600|650|700|750|800|850|950|1000", $options_app_interval_read)
GUICtrlCreateLabel("Miliseconds", 450, 153)
GUICtrlCreateGroup("Output Stream (Advanced):", 265, 5, 250, 121)
GUICtrlCreateLabel("BakSmali", 275, 30)
$options_app_baksmali_stderr = GUICtrlCreateCheckbox("STDERR", 360, 26)
$options_app_baksmali_stderr_read = IniRead(@ScriptDir & "\config.ini", "output", "baksmali_stderr", "1")
If $options_app_baksmali_stderr_read = 1 Then GUICtrlSetState($options_app_baksmali_stderr, $GUI_CHECKED)
$options_app_baksmali_stdout = GUICtrlCreateCheckbox("STDOUT", 445, 26)
$options_app_baksmali_stdout_read = IniRead(@ScriptDir & "\config.ini", "output", "baksmali_stdout", "1")
If $options_app_baksmali_stdout_read = 1 Then GUICtrlSetState($options_app_baksmali_stdout, $GUI_CHECKED)
GUICtrlCreateLabel("APKTool", 275, 55)
$options_app_apktool_stderr = GUICtrlCreateCheckbox("STDERR", 360, 51)
$options_app_apktool_stderr_read = IniRead(@ScriptDir & "\config.ini", "output", "apktool_stderr", "1")
If $options_app_apktool_stderr_read = 1 Then GUICtrlSetState($options_app_apktool_stderr, $GUI_CHECKED)
$options_app_apktool_stdout = GUICtrlCreateCheckbox("STDOUT", 445, 51)
$options_app_apktool_stdout_read = IniRead(@ScriptDir & "\config.ini", "output", "apktool_stdout", "1")
If $options_app_apktool_stdout_read = 1 Then GUICtrlSetState($options_app_apktool_stdout, $GUI_CHECKED)
GUICtrlCreateLabel("Dex2Jar", 275, 80)
$options_app_dex2jar_stderr = GUICtrlCreateCheckbox("STDERR", 360, 76)
$options_app_dex2jar_stderr_read = IniRead(@ScriptDir & "\config.ini", "output", "dex2jar_stderr", "1")
If $options_app_dex2jar_stderr_read = 1 Then GUICtrlSetState($options_app_dex2jar_stderr, $GUI_CHECKED)
$options_app_dex2jar_stdout = GUICtrlCreateCheckbox("STDOUT", 445, 76)
$options_app_dex2jar_stdout_read = IniRead(@ScriptDir & "\config.ini", "output", "dex2jar_stdout", "1")
If $options_app_dex2jar_stdout_read = 1 Then GUICtrlSetState($options_app_dex2jar_stdout, $GUI_CHECKED)
GUICtrlCreateLabel("JAD", 275, 103)
$options_app_jad_stderr = GUICtrlCreateCheckbox("STDERR", 360, 100)
$options_app_jad_stderr_read = IniRead(@ScriptDir & "\config.ini", "output", "jad_stderr", "1")
If $options_app_jad_stderr_read = 1 Then GUICtrlSetState($options_app_jad_stderr, $GUI_CHECKED)
$options_app_jad_stdout = GUICtrlCreateCheckbox("STDOUT", 445, 100)
$options_app_jad_stdout_read = IniRead(@ScriptDir & "\config.ini", "output", "jad_stdout", "1")
If $options_app_jad_stdout_read = 1 Then GUICtrlSetState($options_app_jad_stdout, $GUI_CHECKED)
$options_ok_button = GUICtrlCreateButton("OK", 225, 190, 90, 20)
$options_cancel_button = GUICtrlCreateButton("Cancel", 325, 190, 90, 20)
$options_apply_button = GUICtrlCreateButton("Apply", 425, 190, 90, 20)
GUISetState(@SW_SHOW, $optionsGUI)
GUISwitch($optionsGUI)
While 1
$msg2 = GUIGetMsg()
Select
Case $msg2 = $gui_event_close Or $msg2 = $options_cancel_button
GUIDelete($optionsGUI)
ExitLoop
Case $msg2 = $options_app_jad And BitAND(GUICtrlRead($options_app_jad), $GUI_CHECKED) = $GUI_CHECKED
GUICtrlSetState($options_app_jad_deepness, $GUI_ENABLE)
Case $msg2 = $options_app_jad And BitAND(GUICtrlRead($options_app_jad), $GUI_UnChecked) = $GUI_UnChecked
GUICtrlSetState($options_app_jad_deepness, $GUI_DISABLE)
Case $msg2 = $options_app_jdgui And BitAND(GUICtrlRead($options_app_jdgui), $GUI_CHECKED) = $GUI_CHECKED
GUICtrlSetState($options_app_jad_deepness, $GUI_DISABLE)
Case $msg2 = $options_app_jdgui And BitAND(GUICtrlRead($options_app_jdgui), $GUI_UnChecked) = $GUI_UnChecked
GUICtrlSetState($options_app_jad_deepness, $GUI_ENABLE)
Case $msg2 = $options_ok_button
If GUICtrlRead($options_app_jdgui) = 1 Then
IniWrite(@ScriptDir & "\config.ini", "options", "usejdgui", "1")
IniWrite(@ScriptDir & "\config.ini", "options", "usejad", "0")
ElseIf GUICtrlRead($options_app_jdgui) = 4 Then
IniWrite(@ScriptDir & "\config.ini", "options", "usejdgui", "0")
IniWrite(@ScriptDir & "\config.ini", "options", "usejad", "1")
IniWrite(@ScriptDir & "\config.ini", "options", "jaddeepness", GUICtrlRead($options_app_jad_deepness))
EndIf
If GUICtrlRead($options_app_jad) = 1 Then
IniWrite(@ScriptDir & "\config.ini", "options", "usejad", "1")
IniWrite(@ScriptDir & "\config.ini", "options", "usejdgui", "0")
IniWrite(@ScriptDir & "\config.ini", "options", "jaddeepness", GUICtrlRead($options_app_jad_deepness))
ElseIf GUICtrlRead($options_app_jad) = 4 Then
IniWrite(@ScriptDir & "\config.ini", "options", "usejad", "0")
IniWrite(@ScriptDir & "\config.ini", "options", "usejdgui", "1")
EndIf
IniWrite(@ScriptDir & "\config.ini", "options", "interval", GUICtrlRead($options_app_interval))
If GUICtrlRead($options_app_baksmali_stderr) = $GUI_CHECKED Then IniWrite(@ScriptDir & "\config.ini", "output", "baksmali_stderr", "1")
If GUICtrlRead($options_app_baksmali_stderr) = $GUI_UnChecked Then IniWrite(@ScriptDir & "\config.ini", "output", "baksmali_stderr", "0")
If GUICtrlRead($options_app_baksmali_stdout) = $GUI_CHECKED Then IniWrite(@ScriptDir & "\config.ini", "output", "baksmali_stdout", "1")
If GUICtrlRead($options_app_baksmali_stdout) = $GUI_UnChecked Then IniWrite(@ScriptDir & "\config.ini", "output", "baksmali_stdout", "0")
If GUICtrlRead($options_app_apktool_stderr) = $GUI_CHECKED Then IniWrite(@ScriptDir & "\config.ini", "output", "apktool_stderr", "1")
If GUICtrlRead($options_app_apktool_stderr) = $GUI_UnChecked Then IniWrite(@ScriptDir & "\config.ini", "output", "apktool_stderr", "0")
If GUICtrlRead($options_app_apktool_stdout) = $GUI_CHECKED Then IniWrite(@ScriptDir & "\config.ini", "output", "apktool_stdout", "1")
If GUICtrlRead($options_app_apktool_stdout) = $GUI_UnChecked Then IniWrite(@ScriptDir & "\config.ini", "output", "apktool_stdout", "0")
If GUICtrlRead($options_app_dex2jar_stderr) = $GUI_CHECKED Then IniWrite(@ScriptDir & "\config.ini", "output", "dex2jar_stderr", "1")
If GUICtrlRead($options_app_dex2jar_stderr) = $GUI_UnChecked Then IniWrite(@ScriptDir & "\config.ini", "output", "dex2jar_stderr", "0")
If GUICtrlRead($options_app_dex2jar_stdout) = $GUI_CHECKED Then IniWrite(@ScriptDir & "\config.ini", "output", "dex2jar_stdout", "1")
If GUICtrlRead($options_app_dex2jar_stdout) = $GUI_UnChecked Then IniWrite(@ScriptDir & "\config.ini", "output", "dex2jar_stdout", "0")
If GUICtrlRead($options_app_jad_stderr) = $GUI_CHECKED Then IniWrite(@ScriptDir & "\config.ini", "output", "jad_stderr", "1")
If GUICtrlRead($options_app_jad_stderr) = $GUI_UnChecked Then IniWrite(@ScriptDir & "\config.ini", "output", "jad_stderr", "0")
If GUICtrlRead($options_app_jad_stdout) = $GUI_CHECKED Then IniWrite(@ScriptDir & "\config.ini", "output", "jad_stdout", "1")
If GUICtrlRead($options_app_jad_stdout) = $GUI_UnChecked Then IniWrite(@ScriptDir & "\config.ini", "output", "jad_stdout", "0")
$heapsize = GUICtrlRead($options_app_heapsize)
_FileWriteToLine(@ScriptDir & "\tools\dex2jar.bat", "23", "java -Xms" & $heapsize & "m -cp " & Chr(34) & "%CLASSPATH%" & Chr(34) & " " & Chr(34) & "com.googlecode.dex2jar.tools.Dex2jarCmd" & Chr(34) & " %*", 1)
GUIDelete($optionsGUI)
ExitLoop
Case $msg2 = $options_apply_button
If GUICtrlRead($options_app_jdgui) = 1 Then
IniWrite(@ScriptDir & "\config.ini", "options", "usejdgui", "1")
IniWrite(@ScriptDir & "\config.ini", "options", "usejad", "0")
ElseIf GUICtrlRead($options_app_jdgui) = 4 Then
IniWrite(@ScriptDir & "\config.ini", "options", "usejdgui", "0")
IniWrite(@ScriptDir & "\config.ini", "options", "usejad", "1")
IniWrite(@ScriptDir & "\config.ini", "options", "jaddeepness", GUICtrlRead($options_app_jad_deepness))
EndIf
If GUICtrlRead($options_app_jad) = 1 Then
IniWrite(@ScriptDir & "\config.ini", "options", "usejad", "1")
IniWrite(@ScriptDir & "\config.ini", "options", "usejdgui", "0")
IniWrite(@ScriptDir & "\config.ini", "options", "jaddeepness", GUICtrlRead($options_app_jad_deepness))
ElseIf GUICtrlRead($options_app_jad) = 4 Then
IniWrite(@ScriptDir & "\config.ini", "options", "usejad", "0")
IniWrite(@ScriptDir & "\config.ini", "options", "usejdgui", "1")
EndIf
$heapsize = GUICtrlRead($options_app_heapsize)
IniWrite(@ScriptDir & "\config.ini", "options", "heapsize", $heapsize)
_FileWriteToLine(@ScriptDir & "\tools\dex2jar.bat", "23", "java -Xms" & $heapsize & "m -cp " & Chr(34) & "%CLASSPATH%" & Chr(34) & " " & Chr(34) & "com.googlecode.dex2jar.tools.Dex2jarCmd" & Chr(34) & " %*", 1)
IniWrite(@ScriptDir & "\config.ini", "options", "interval", GUICtrlRead($options_app_interval))
GUICtrlSetStyle($options_apply_button, $WS_DISABLED)
EndSelect
WEnd
EndFunc ;==>_PreferencesMenu