-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.py
583 lines (415 loc) · 21.6 KB
/
main.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
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
import os
import json
array_declared = False
arrayname = ""
cmds = []
method_name = ""
method_para = ""
curr_class = ""
available_methods = []
def methodify(st):
if "->" in st:
## method
owch = st.split(";->")
_oO_ = f"{owch[0].replace('/','_')}_{owch[1].replace('(I)[C','')}"
else:
_oO_ = st.replace("/","_").replace(";","")
_oO_ = _oO_.replace("$","tempsoul")
return _oO_
def demethodify(st):
return st.replace('_','/').replace('tempsoul','$')
def combine(source):
cmd1 = cmds[-2]
cmd2 = cmds[-1]
cmds.pop()
cmds.pop()
ele__ = cmd2.split(" ")[0]
dat__ = cmd1.split(" = ")[1]
if source == "int-to-char":
cmds.append(f"{ele__} = chr({dat__})")
if source == "aput-char":
cmds.append(f"{ele__} = ({dat__})")
def deobfuscate(smali, is_method):
global array_declared, arrayname, cmds, method_name, method_para, available_methods, curr_class
for index in range(len(smali)):
line = smali[index]
op__ = line.split(" ")
if is_method and ".method" in line:
method_name = line.split(" ")[-1].replace("(I)[C","")
if "new-array" in line and "[C" in line:
arraysize__ = op__[2].replace(",",'')
arrayname = op__[1].replace(",","")
##### get size
if "const/" in smali[index-1]:
op__2 = smali[index-1].split(" ")
arraysize = int(op__2[2], 16)
cmds.append(f"{arrayname} = [None] * {arraysize}")
array_declared = True
if array_declared:
if "xor-int/lit16" in line:
out__ = op__[1].replace(",","")
to_be_added = op__[2].replace(",","")
opval__ = op__[3]
if "const" in smali[index-1]:
op__2 = smali[index-1].split(" ")
op2val__ = op__2[2]
if op__2[1].replace(",",'') == to_be_added:
cmds.append(f"{out__} = {op2val__} ^ {opval__}")
elif "aget-char" in smali[index-1]:
op__2 = smali[index-1].split(" ")
temp__ = cmds[-1]
cmds.pop()
op__temp = temp__.split(" ")
if op__2[1].replace(",",'') == to_be_added:
xcc = temp__.split(" = ")[1]
cmds.append(f"{out__} = ord({xcc}) ^ {opval__}")
if "xor-int " in line: #xor-int only come in methods
out__ = op__[1].replace(",","")
to_be_added = op__[2].replace(",","")
opval__ = op__[3]
method_para = op__[3]
if "const" in smali[index-1]:
op__2 = smali[index-1].split(" ")
op2val__ = op__2[2]
if op__2[1].replace(",",'') == to_be_added:
cmds.append(f"{out__} = {op2val__} ^ {opval__}")
if "int-to-char" in line:
cmds.append(f"{op__[1].replace(',','')} = chr({op__[2]})")
combine("int-to-char")
if "aput-char" in line:
ele__ = op__[1].replace(",","")
arr__ = op__[2].replace(",","")
index__ = op__[3]
if "const" in smali[index-1]:
op__2 = smali[index-1].split(" ")
if op__2[1].replace(",",'') == index__:
cmds.append(f"{arr__}[{int(op__2[2], 16)}] = {ele__}")
combine("aput-char")
if "aget-char" in line:
ele__ = op__[1].replace(",","")
arr__ = op__[2].replace(",","")
index__ = op__[3]
if "const" in smali[index-1]:
op__2 = smali[index-1].split(" ")
if op__2[1].replace(",",'') == index__:
cmds.append(f"{ele__} = {arr__}[{int(op__2[2], 16)}]")
# only in case of is_method return the python code
if "return-object" in line and is_method:
if len(cmds) > arraysize:
#### close everypthing
cmds.append(f"result_str = ''.join({arrayname})")
cmds.append(f"return result_str")
c_m_d = []
c_m_d.append(f"def {curr_class}_{method_name}({method_para}):")
available_methods.append(f"{curr_class}_{method_name}")
for i in cmds:
if "(chr(" in i:
_o_ = i.replace("(chr(", "(chr((").replace("))", ") & 0xFFFF))")
c_m_d.append(_o_)
else:
c_m_d.append(i)
cmds = []
array_declared = False
arrayname = ""
_______ = ""
for i in c_m_d:
if "def " in i:
_______ += "\n\n" + i + "\n"
else:
_______ +=" " + i + "\n"
return _______
if "Ljava/lang/String;->intern()" in line:
if len(cmds) > arraysize:
#### close everypthing
cmds.append(f"result_str = ''.join({arrayname})")
# cmds.append("""print("'" + result_str + "'")""")
#### fixing the chr() range (req for java to python)
c_m_d = []
for i in cmds:
if "(chr(" in i:
_o_ = i.replace("(chr(", "(chr((").replace("))", ") & 0x10FFFF))")
c_m_d.append(_o_)
else:
c_m_d.append(i)
cmds = []
array_declared = False
arrayname = ""
_______ = ""
for i in c_m_d:
_______ += i + "\n"
ret__ = {}
exec(_______, globals(), ret__)
new_string_ = ret__["result_str"]
java_friendly_string = json.dumps(new_string_)
java_friendly_string = java_friendly_string[1:-1]
new_string_ = java_friendly_string
else:
return smali
try:
new_lines = []
start___, end___ = False, False
for line in smali:
if not start___ and "new-array" in line and "[C" in line:
new_lines.pop() # removes the previous declared size of the array as const
start___ = True
elif start___ and not end___ and "Ljava/lang/String;->intern()" in line:
end___ = True
elif end___ and start___:
# get move-result-object v0
if line.split()[0] == "move-result-object":
var_ = line.split()[1]
new_lines.append(f'''const-string {var_}, "{new_string_}"''')
end___, start___ = False, False
elif not start___ and not end___:
new_lines.append(line)
except:
new_lines = smali
return new_lines
def deobfuscate_method(smali):
global array_declared, arrayname, cmds, method_name, method_para, available_methods, curr_class
with open("tempsouleven.py") as f:
for i in f.readlines():
cmds.append(i)
for index in range(len(smali)):
line = smali[index]
op__ = line.split(" ")
# specific is_method_call opcodes
if "const " in line:
cmds.append(f"{op__[1].replace(',','')} = {op__[2]}")
if "sub-int" in line:
cmds.append(f"{op__[1].replace(',','')} = {op__[2].replace(',','')} - {op__[3]}")
if "add-int" in line:
cmds.append(f"{op__[1].replace(',','')} = {op__[2].replace(',','')} + {op__[3]}")
if "xor-int" in line:
cmds.append(f"{op__[1].replace(',','')} = {op__[2].replace(',','')} ^ {op__[3]}")
if demethodify(curr_class) in line:
#got calling method
last_var_ = cmds[-1].split(" ")[2]
method__ = methodify(line.split(" ")[-1])
cmds.append(f"result_str = {method__}({last_var_})")
_______ = ""
for i in cmds:
_______ += i + "\n"
cmds = []
with open("temp.py","w") as f:
f.write(_______)
ret__ = {}
exec(_______, globals(), ret__)
new_string_ = ret__["result_str"]
java_friendly_string = json.dumps(new_string_)
java_friendly_string = java_friendly_string[1:-1]
new_string_ = java_friendly_string
try:
new_lines = []
start___, end___ = False, False
for line in smali:
if not start___ and ".line" in line:
start___ = True
elif start___ and not end___ and "Ljava/lang/String;->intern()" in line:
end___ = True
elif end___ and start___:
# get move-result-object v0
if line.split()[0] == "move-result-object":
var_ = line.split()[1]
new_lines.append(f'''const-string {var_}, "{new_string_}"''')
end___, start___ = False, False
elif not start___ and not end___:
new_lines.append(line)
except:
new_lines = smali
return new_lines
########################## file handling #############################
######################## analysing toooooooo #########################
def process_file(filepath):
global available_methods, curr_class
curr_smali = []
try:
with open(filepath, "r", encoding="utf-8") as f:
for line in f.readlines():
line = line.replace("\n", "")
if len(line.split()) > 0:
curr_smali.append(line.strip())
except (UnicodeDecodeError, IOError) as e:
return None, e
found__ = False
start_line = -1
curr_line = -1
changes = []
is_method = False
is_temp_written = False
#### as the char[] methods are randomly distributed,
#### why not first search and keep the method?,
for line in curr_smali:
curr_line += 1
method_ops_ = [
".line", "const", "xor-int/lit16", "int-to-char",
"aput-char", "aget-char", "return-object", "const/16",
"xor-int" ## for methods
]
if ".class" in line:
curr_class = methodify(line.split()[-1])
if not found__:
if line.startswith(".method") and line.endswith("(I)[C"):
is_method = True
# respresents that method char has ended without interaction of new-array
if ".end method" in line and is_method:
is_method = False
if "new-array" in line and "[C" in line and is_method:
start_line = (curr_line - 5) if (curr_line - 5) >= 0 else 0
found__ = True
else:
# if is_method
if not is_temp_written:
is_temp_written = True
with open("tempsouleven.py","w") as f:
f.write("")
if all(op_op not in line for op_op in method_ops_):
found__, is_method, start_line, end_line = False, False, -1, -1
print(f"----------x---------------------{line}")
elif "return-object" in line:
try:
end_line = curr_line + 1
method_cmds = deobfuscate(curr_smali[start_line:end_line], True)
with open("tempsouleven.py","a") as f:
f.write(method_cmds)
found__, is_method, start_line, end_line = False, False, -1, -1
except:
found__, is_method, start_line, end_line = False, False, -1, -1
found__, is_method, start_line, end_line, curr_line = False, False, -1, -1, -1
for line in curr_smali:
curr_line += 1
my_ops_ = [
".line", "const", "xor-int/lit16", "int-to-char",
"aput-char", "aget-char", " Ljava/lang/String", "const/16"
]
if not found__:
if "new-array" in line and "[C" in line:
start_line = (curr_line - 5) if (curr_line - 5) >= 0 else 0
found__ = True
# skipping if found other opcodes so it may skip some but, who cares?
else:
if all(op_op not in line for op_op in my_ops_) or ".end method" in line:
found__, is_method, start_line, end_line = False, False, -1, -1
#print(f"--------------------------------{line}")
elif "Ljava/lang/String;->intern()" in line:
end_line = curr_line + 2
new_lines = deobfuscate(curr_smali[start_line:end_line], False)
changes.append((start_line, end_line, new_lines))
found__, is_method, start_line, end_line = False, False, -1, -1
found__, is_method, start_line, end_line, curr_line = False, False, -1, -1, -1
## finally last loop for methods
found__confirm = False
if is_temp_written:
## means methods exist
for line in curr_smali:
curr_line += 1
my_ops_ = [
"const", "xor-int", "int-to-char",
"aput-char", "aget-char", " Ljava/lang/String",
"sub-int", "add-int", "invoke-", "move-"
]
if not found__:
#sorry but I got no better way to get the beginning of method calls
#all of them begin with .line only hhehe
if ".line" in line:
start_line = curr_line
found__ = True
else:
if all(op_op not in line for op_op in my_ops_) or ".end method" in line:
found__, is_method, start_line, end_line = False, False, -1, -1
#print(f"--------------------------------{line}")
elif "invoke-" in line and "(I)[C" in line:
found__ = True
found__confirm = True # specially for method cases
if methodify(line.split()[-1]) not in available_methods:
found__, is_method, start_line, end_line = False, False, -1, -1
found__confirm = False
elif "Ljava/lang/String;->intern()" in line and found__confirm:
end_line = curr_line + 2
try:
new_lines = deobfuscate_method(curr_smali[start_line:end_line])
changes.append((start_line, end_line, new_lines))
except:
pass
found__, is_method, start_line, end_line = False, False, -1, -1
found__confirm = False
if ".line" in line:
start_line = curr_line
found__ = True
changes = sorted(changes, key=lambda x: x[0])
for start_line, end_line, new_lines in reversed(changes):
curr_smali[start_line:end_line] = new_lines
if is_temp_written:
os.remove("tempsouleven.py")
available_methods = []
return curr_smali, None
# def process_folder(folder, folderout):
# for root, dirs, files in os.walk(folder):
# for file in files:
# if file.endswith(".smali"):
# input_filepath = os.path.join(root, file)
# relative_path = os.path.relpath(input_filepath, folder)
# output_filepath = os.path.join(folderout, relative_path)
# if os.path.exists(output_filepath):
# print(f"File {output_filepath} already exists. Skipping.")
# else:
# os.makedirs(os.path.dirname(output_filepath), exist_ok=True)
# new_lines, error = process_file(input_filepath)
# if error:
# # Copy the original file to the output directory
# shutil.copyfile(input_filepath, output_filepath)
# print(f"Error processing {input_filepath}: {error}. Copied original file.")
# elif new_lines:
# # Write the modified lines to the output file
# with open(output_filepath, "w", encoding="utf-8") as f:
# for line in new_lines:
# f.write(line + "\n")
# print(f"Wrote : {output_filepath}")
from tqdm import tqdm
def process_folder(folder, folderout):
all_files = []
# Collect all the files to process
for root, dirs, files in os.walk(folder):
for file in files:
if file.endswith(".smali"):
all_files.append(os.path.join(root, file))
# Wrap the file processing loop with tqdm
with tqdm(total=len(all_files), desc="Processing files", unit="file") as pbar:
for input_filepath in all_files:
relative_path = os.path.relpath(input_filepath, folder)
output_filepath = os.path.join(folderout, relative_path)
if os.path.exists(output_filepath):
print(f"File {output_filepath} already exists. Skipping.")
else:
os.makedirs(os.path.dirname(output_filepath), exist_ok=True)
new_lines, error = process_file(input_filepath)
if error:
# Copy the original file to the output directory
shutil.copyfile(input_filepath, output_filepath)
print(f"Error processing {input_filepath}: {error}. Copied original file.")
elif new_lines:
# Write the modified lines to the output file
with open(output_filepath, "w", encoding="utf-8") as f:
for line in new_lines:
f.write(line + "\n")
pbar.set_postfix({"last_written": output_filepath})
# Update the progress bar regardless of action
pbar.update(1)
# Example usage
folder = "out"
folderout = "classes_dec"
process_folder(folder, folderout)
print("""
██████╗░███████╗██╗░░░██╗███████╗░█████╗░██╗░░░░░███████╗██████╗░
██╔══██╗██╔════╝██║░░░██║██╔════╝██╔══██╗██║░░░░░██╔════╝██╔══██╗
██████╔╝█████╗░░╚██╗░██╔╝█████╗░░███████║██║░░░░░█████╗░░██║░░██║
██╔══██╗██╔══╝░░░╚████╔╝░██╔══╝░░██╔══██║██║░░░░░██╔══╝░░██║░░██║
██║░░██║███████╗░░╚██╔╝░░███████╗██║░░██║███████╗███████╗██████╔╝
╚═╝░░╚═╝╚══════╝░░░╚═╝░░░╚══════╝╚═╝░░╚═╝╚══════╝╚══════╝╚═════╝░
░██████╗░█████╗░██╗░░░██╗██╗░░░░░███████╗██╗░░░██╗███████╗███╗░░██╗
██╔════╝██╔══██╗██║░░░██║██║░░░░░██╔════╝██║░░░██║██╔════╝████╗░██║
╚█████╗░██║░░██║██║░░░██║██║░░░░░█████╗░░╚██╗░██╔╝█████╗░░██╔██╗██║
░╚═══██╗██║░░██║██║░░░██║██║░░░░░██╔══╝░░░╚████╔╝░██╔══╝░░██║╚████║
██████╔╝╚█████╔╝╚██████╔╝███████╗███████╗░░╚██╔╝░░███████╗██║░╚███║
╚═════╝░░╚════╝░░╚═════╝░╚══════╝╚══════╝░░░╚═╝░░░╚══════╝╚═╝░░╚══╝
""")