-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathandroconf.py
More file actions
375 lines (288 loc) · 8.88 KB
/
Copy pathandroconf.py
File metadata and controls
375 lines (288 loc) · 8.88 KB
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
import sys
import os
import logging
import types
import random
import string
import imp
ANDROGUARD_VERSION = "3.0-dev"
def is_ascii_problem(s):
try:
s.decode("ascii")
return False
except UnicodeDecodeError:
return True
class Color(object):
Normal = "\033[0m"
Black = "\033[30m"
Red = "\033[31m"
Green = "\033[32m"
Yellow = "\033[33m"
Blue = "\033[34m"
Purple = "\033[35m"
Cyan = "\033[36m"
Grey = "\033[37m"
Bold = "\033[1m"
CONF = {
"BIN_DED": "ded.sh",
"PATH_DED": "./decompiler/ded/",
"PATH_DEX2JAR": "./decompiler/dex2jar/",
"BIN_DEX2JAR": "dex2jar.sh",
"PATH_JAD": "./decompiler/jad/",
"BIN_JAD": "jad",
"BIN_WINEJAD": "jad.exe",
"PATH_FERNFLOWER": "./decompiler/fernflower/",
"BIN_FERNFLOWER": "fernflower.jar",
"OPTIONS_FERNFLOWER": {"dgs": '1',
"asc": '1'},
"PRETTY_SHOW": 1,
"TMP_DIRECTORY": "/tmp/",
# Full python or mix python/c++ (native)
#"ENGINE" : "automatic",
"ENGINE": "python",
"RECODE_ASCII_STRING": False,
"RECODE_ASCII_STRING_METH": None,
"DEOBFUSCATED_STRING": True,
# "DEOBFUSCATED_STRING_METH" : get_deobfuscated_string,
"PATH_JARSIGNER": "jarsigner",
"COLORS": {
"OFFSET": Color.Yellow,
"OFFSET_ADDR": Color.Green,
"INSTRUCTION_NAME": Color.Yellow,
"BRANCH_FALSE": Color.Red,
"BRANCH_TRUE": Color.Green,
"BRANCH": Color.Blue,
"EXCEPTION": Color.Cyan,
"BB": Color.Purple,
"NOTE": Color.Red,
"NORMAL": Color.Normal,
"OUTPUT": {
"normal": Color.Normal,
"registers": Color.Normal,
"literal": Color.Green,
"offset": Color.Purple,
"raw": Color.Red,
"string": Color.Red,
"meth": Color.Cyan,
"type": Color.Blue,
"field": Color.Green,
}
},
"PRINT_FCT": sys.stdout.write,
"LAZY_ANALYSIS": False,
"MAGIC_PATH_FILE": None,
"DEFAULT_API": 19,
"SESSION": None,
}
def default_colors(obj):
CONF["COLORS"]["OFFSET"] = obj.Yellow
CONF["COLORS"]["OFFSET_ADDR"] = obj.Green
CONF["COLORS"]["INSTRUCTION_NAME"] = obj.Yellow
CONF["COLORS"]["BRANCH_FALSE"] = obj.Red
CONF["COLORS"]["BRANCH_TRUE"] = obj.Green
CONF["COLORS"]["BRANCH"] = obj.Blue
CONF["COLORS"]["EXCEPTION"] = obj.Cyan
CONF["COLORS"]["BB"] = obj.Purple
CONF["COLORS"]["NOTE"] = obj.Red
CONF["COLORS"]["NORMAL"] = obj.Normal
CONF["COLORS"]["OUTPUT"]["normal"] = obj.Normal
CONF["COLORS"]["OUTPUT"]["registers"] = obj.Normal
CONF["COLORS"]["OUTPUT"]["literal"] = obj.Green
CONF["COLORS"]["OUTPUT"]["offset"] = obj.Purple
CONF["COLORS"]["OUTPUT"]["raw"] = obj.Red
CONF["COLORS"]["OUTPUT"]["string"] = obj.Red
CONF["COLORS"]["OUTPUT"]["meth"] = obj.Cyan
CONF["COLORS"]["OUTPUT"]["type"] = obj.Blue
CONF["COLORS"]["OUTPUT"]["field"] = obj.Green
def disable_colors():
""" Disable colors from the output (color = normal)"""
for i in CONF["COLORS"]:
if isinstance(CONF["COLORS"][i], dict):
for j in CONF["COLORS"][i]:
CONF["COLORS"][i][j] = Color.normal
else:
CONF["COLORS"][i] = Color.normal
def remove_colors():
""" Remove colors from the output (no escape sequences)"""
for i in CONF["COLORS"]:
if isinstance(CONF["COLORS"][i], dict):
for j in CONF["COLORS"][i]:
CONF["COLORS"][i][j] = ""
else:
CONF["COLORS"][i] = ""
def enable_colors(colors):
for i in colors:
CONF["COLORS"][i] = colors[i]
def save_colors():
c = {}
for i in CONF["COLORS"]:
if isinstance(CONF["COLORS"][i], dict):
c[i] = {}
for j in CONF["COLORS"][i]:
c[i][j] = CONF["COLORS"][i][j]
else:
c[i] = CONF["COLORS"][i]
return c
def long2int(l):
if l > 0x7fffffff:
l = (0x7fffffff & l) - 0x80000000
return l
def long2str(l):
"""Convert an integer to a string."""
if type(l) not in (types.IntType, types.LongType):
raise ValueError('the input must be an integer')
if l < 0:
raise ValueError('the input must be greater than 0')
s = ''
while l:
s = s + chr(l & 255)
l >>= 8
return s
def str2long(s):
"""Convert a string to a long integer."""
if type(s) not in (types.StringType, types.UnicodeType):
raise ValueError('the input must be a string')
l = 0
for i in s:
l <<= 8
l |= ord(i)
return l
def random_string():
return random.choice(string.letters) + ''.join([random.choice(
string.letters + string.digits) for i in range(10 - 1)])
def is_android(filename):
"""Return the type of the file
@param filename : the filename
@rtype : "APK", "DEX", None
"""
if not filename:
return None
with open(filename, "rb") as fd:
f_bytes = fd.read()
return is_android_raw(f_bytes)
return None
def is_android_raw(raw):
"""
Returns a string that describes the type of file, for common Android
specific formats
"""
val = None
if raw[0:2] == b"PK" and b'META-INF/MANIFEST.MF' in raw:
val = "APK"
elif raw[0:3] == b"dex":
val = "DEX"
elif raw[0:3] == b"dey":
val = "DEY"
elif raw[0:4] == b"\x03\x00\x08\x00":
val = "AXML"
elif raw[0:4] == b"\x02\x00\x0C\x00":
val = b"ARSC"
return val
# Init Logger
log_andro = logging.getLogger("androguard")
console_handler = logging.StreamHandler()
console_handler.setFormatter(logging.Formatter("%(levelname)s: %(message)s"))
log_andro.addHandler(console_handler)
log_runtime = logging.getLogger("androguard.runtime") # logs at runtime
log_interactive = logging.getLogger("androguard.interactive") # logs in interactive functions
log_loading = logging.getLogger("androguard.loading") # logs when loading andro
def set_lazy():
CONF["LAZY_ANALYSIS"] = True
def set_debug():
log_andro.setLevel(logging.DEBUG)
def set_info():
log_andro.setLevel(logging.INFO)
def get_debug():
return log_andro.getEffectiveLevel() == logging.DEBUG
def warning(x):
log_runtime.warning(x)
import traceback
traceback.print_exc()
def error(x):
log_runtime.error(x)
raise ()
def debug(x):
log_runtime.debug(x)
def info(x):
log_runtime.info(x)
def set_options(key, value):
CONF[key] = value
def save_to_disk(buff, output):
with open(output, "w") as fd:
fd.write(buff)
def rrmdir(directory):
for root, dirs, files in os.walk(directory, topdown=False):
for name in files:
os.remove(os.path.join(root, name))
for name in dirs:
os.rmdir(os.path.join(root, name))
os.rmdir(directory)
def make_color_tuple(color):
"""
turn something like "#000000" into 0,0,0
or "#FFFFFF into "255,255,255"
"""
R = color[1:3]
G = color[3:5]
B = color[5:7]
R = int(R, 16)
G = int(G, 16)
B = int(B, 16)
return R, G, B
def interpolate_tuple(startcolor, goalcolor, steps):
"""
Take two RGB color sets and mix them over a specified number of steps. Return the list
"""
# white
R = startcolor[0]
G = startcolor[1]
B = startcolor[2]
targetR = goalcolor[0]
targetG = goalcolor[1]
targetB = goalcolor[2]
DiffR = targetR - R
DiffG = targetG - G
DiffB = targetB - B
buffer = []
for i in range(0, steps + 1):
iR = R + (DiffR * i // steps)
iG = G + (DiffG * i // steps)
iB = B + (DiffB * i // steps)
hR = string.replace(hex(iR), "0x", "")
hG = string.replace(hex(iG), "0x", "")
hB = string.replace(hex(iB), "0x", "")
if len(hR) == 1:
hR = "0" + hR
if len(hB) == 1:
hB = "0" + hB
if len(hG) == 1:
hG = "0" + hG
color = string.upper("#" + hR + hG + hB)
buffer.append(color)
return buffer
def color_range(startcolor, goalcolor, steps):
"""
wrapper for interpolate_tuple that accepts colors as html ("#CCCCC" and such)
"""
start_tuple = make_color_tuple(startcolor)
goal_tuple = make_color_tuple(goalcolor)
return interpolate_tuple(start_tuple, goal_tuple, steps)
def load_api_specific_resource_module(resource_name, api):
# Those two imports are quite slow.
'''
from aosp_permissions import AOSP_PERMISSIONS
from api_permission_mappings import AOSP_PERMISSIONS_MAPPINGS
if resource_name == "aosp_permissions":
module = AOSP_PERMISSIONS
elif resource_name == "api_permission_mappings":
module = AOSP_PERMISSIONS_MAPPINGS
else:
error("Invalid resource: %s" % resource_name)
if not api:
api = CONF["DEFAULT_API"]
value = module.get(api)
if value:
return value
return module.get('9')
'''
pass