This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 118
/
flare_emu_radare.py
555 lines (467 loc) · 19.7 KB
/
flare_emu_radare.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
import r2pipe
import binascii
import struct
import flare_emu
import re
import ntpath
import base64
import logging
class BasicBlock():
def __init__(self, flowchart, id, addr, size, jump, fail):
self.start_ea = addr
self.size = size
self.end_ea = addr + size
self.successors = [fail, jump]
self.type = -1
self.id = id
self.flowchart = flowchart
def succs(self):
for z in list(map(lambda x: self.getBlockByAddr(x), list(filter(lambda y: y != -1, self.successors)))):
yield z
def getBlockByAddr(self, addr):
for bb in self.flowchart:
if addr >= bb.start_ea and addr < bb.end_ea:
return bb
# in order to minimize r2pipe overhead, we will cache things
class Radare2AnalysisHelper(flare_emu.AnalysisHelper):
def __init__(self, path, eh):
self.cache = {}
super(Radare2AnalysisHelper, self).__init__()
try:
self.eh = eh
self.r = r2pipe.open(path)
self.path = path
except Exception as e:
print("error loading %s in radare2: %s" % (path, str(e)))
exit(1)
info = self.r.cmdj("iAj")
self.arch = info['bins'][0]['arch'].upper()
self.bitness = info['bins'][0]['bits']
self.filetype = self.r.cmdj("ij")['core']['format'].upper()
if self.filetype[:5] == "MACH0":
self.filetype = "MACHO"
elif self.filetype[:3] == "ELF":
self.filetype = "ELF"
elif self.filetype[:2] == "PE":
self.filetype = "PE"
# projects are quite broken at this time, so we will save this for
# brighter days
'''
# load project, if no project already exists, analyze
if useProjects:
if projectName is None:
projectName = self._getFileNameFromPath(path)
prj = list(filter(lambda x: x == projectName, self.r.cmdj("Pj")))
if len(prj) > 0:
self.r.cmd("Po %s" % projectName)
else:
self.r.cmd("aaa")
self._additionalAnalysis()
self.r.cmd("Ps %s" % projectName)
else:
self.r.cmd("aaa")
self._additionalAnalysis()
'''
self.r.cmd("aaa")
# initialize cache
self.clearCache()
self._additionalAnalysis()
def _additionalAnalysis(self):
# label j_ functions
candidates = list(map(lambda x: x['offset'],
list(filter(lambda y: y['nbbs'] == 1 and
y['size'] <= 10,
self.r.cmdj("aflj")))
))
for candidate in candidates:
try:
if self._getBasicBlocks(candidate)[0]['ninstr'] == 1 and self.getMnem(candidate) == "jmp":
op = self._getOpndDict(candidate, 0)
if op['type'] == "imm" and ".dll_" in self.getName(op['value']):
self.setName(candidate, "j_" + self.normalizeFuncName(self.getName(op['value'])))
except Exception as e:
self.eh.logger.debug("Exception searching for trampoline functions, candidate %s: %s" % (self.eh.hexString(candidate), str(e)))
def _getFileNameFromPath(self, path):
head, tail = ntpath.split(path)
return tail or ntpath.basename(head)
def _getBasicBlocks(self, addr):
addr = self.getFuncStart(addr) # caches blocks for this function
return self.cache['afb'][addr]
def _getFuncInsns(self, funcAddr):
# pdfj does not return expected results
insns = []
funcEnd = self.getFuncEnd(funcAddr)
addr = funcAddr
done = False
while 1:
insnChunk = self.r.cmdj("pdj 50 @%d" % addr)
for insn in insnChunk:
if insn['offset'] < funcEnd:
insns.append(insn)
else:
done = True
break
addr = insn['offset'] + insn['size']
if addr >= funcEnd:
done = True
break
if done:
return insns
# cache instructions, blocks, and opcodes for a function
def _cacheFunc(self, funcAddr):
insns = self._getFuncInsns(funcAddr)
cachedInsns = list(map(lambda x: x['offset'], self.cache['pd']))
self.cache['pd'] += list(filter(lambda x: x['offset'] not in cachedInsns, insns))
self.r.cmd("pd 50 @%d" % funcAddr) # workaround disassemble bug
ops = self.r.cmdj("aoj %d @%d" % (len(insns), funcAddr))
cachedOps = list(map(lambda x: x['addr'], self.cache['ao']))
self.cache['ao'] += list(filter(lambda x: x['addr'] not in cachedOps, ops))
self.cache['afb'][funcAddr] = self.r.cmdj("afbj %d" % funcAddr)
def _getOpcode(self, addr):
op = list(filter(lambda x: x['addr'] == addr, self.cache['ao']))
if len(op) > 0:
return op[0]
op = self.r.cmdj("aoj 1 @%d" % addr)[0]
self.cache['ao'].append(op)
return op
def _getInsn(self, addr):
insn = list(filter(lambda x: x['offset'] == addr, self.cache['pd']))
if len(insn) > 0:
return insn[0]
insn = self.r.cmdj("pdj 1 @%d" % addr)[0]
self.cache['pd'].append(insn)
return insn
def _deleteCacheItem(self, item):
if isinstance(self.cache[item], list):
self.cache[item] = []
else:
self.cache[item] = {}
def _getFuncInfo(self, addr):
try:
if addr in self.cache['afi']:
return self.cache['afi'][addr]
self.cache['afi'][addr] = self.r.cmdj("afij %d" % addr)[0]
return self.cache['afi'][addr]
except Exception as e:
self.eh.logger.debug("exception finding function info for %s: %s"
% (self.eh.hexString(addr), str(e)))
self.cache['afi'][addr] = None
return None
def clearCache(self, item=None):
if item is None:
self.cache = {}
# symbols
self.cache['fn'] = {}
self.r.cmd("fs symbols")
self.cache['fn']['symbols'] = self.r.cmdj("fnj")
self.r.cmd("fs imports")
self.cache['fn']['imports'] = self.r.cmdj("fnj")
self.r.cmd("fs *")
self.cache['fn']['all'] = self.r.cmdj("fnj")
# segments and sections
if self.filetype != "PE":
self.cache['segments'] = self.r.cmdj("iSSj")
self.cache['sections'] = self.r.cmdj("iSj")
else:
self.cache['segments'] = self.r.cmdj("iSj")
self.cache['sections'] = self.cache['segments']
# cached on demand
self.cache['afi'] = {} # function info keyed on requested addr
self.cache['afb'] = {} # basic blocks keyed on function addr
self.cache['ao'] = [] # opcodes
self.cache['pd'] = [] # instructions
self.cache['funcs'] = [] # track cached functions
elif item in self.cache:
self._deleteCacheItem(item)
# assume emulation for this function and cache everything
def getFuncStart(self, addr):
fi = self._getFuncInfo(addr)
if fi == None:
return None
funcStart = fi['offset']
if funcStart not in self.cache['funcs']:
self.cache['funcs'].append(funcStart)
self._cacheFunc(funcStart)
return funcStart
def getFuncEnd(self, addr):
fi = self._getFuncInfo(addr)
return fi['offset'] + fi['size']
def getFuncName(self, addr, normalized=True):
if normalized:
return self.normalizeFuncName(self.getName(self.getFuncStart(addr)))
else:
return self.getName(self.getFuncStart(addr))
def getMnem(self, addr):
try:
op = self._getOpcode(addr)
return op['mnemonic']
except:
return ""
# gets address of last instruction in the basic block containing addr
def getBlockEndInsnAddr(self, addr, flowchart):
try:
bbs = self._getBasicBlocks(addr)
bb = list(filter(lambda x: x['addr'] <= addr and (x['addr'] + x['size']) > addr, bbs))[0]
addr = bb['addr']
while addr < bb['addr'] + bb['size']:
insn = self._getOpcode(addr)
addr += insn['size']
return insn['addr']
except:
return None
def skipJumpTable(self, addr):
pass
def getMinimumAddr(self):
# we don't want to consider PAGEZERO
if self.filetype == "MACHO":
return sorted(list(filter(lambda y: y > 0, list(map(lambda x: x['vaddr'], self.cache['segments'])))))[0]
else:
return sorted(list(map(lambda x: x['vaddr'], self.cache['segments'])))[0]
def getMaximumAddr(self):
maxAddr = 0
for seg in self.cache['segments']:
if seg['vaddr'] + seg['vsize'] > maxAddr:
maxAddr = seg['vaddr'] + seg['vsize']
return maxAddr
def getBytes(self, addr, size):
# prz and pr seem to have problems, maybe due to certain unprintable characters going over the pipe
return binascii.unhexlify(self.r.cmd("p8 %d @%d" % (size, addr)).replace("\n", ""))
def getCString(self, addr):
buf = ""
while (address >= self.getMinimumAddr()
and address < self.getMaximumAddr()
and self.getBytes(address, 1) != "\x00"):
buf += self.getBytes(address, 1)
address += 1
return buf
def getOperand(self, addr, opndNum):
opndCnt = len(self._getOpcode(addr)['opex']['operands'])
if opndNum > opndCnt - 1:
return None
opsString = " ".join(self._getOpcode(addr)['disasm'].split(" ")[1:])
if opsString[0] == "{":
opsString = opsString[1:-1]
return opsString.split(", ")[opndNum]
def getWordValue(self, addr):
return self.r.cmdj("pv2j 1 @%d" % addr)['value']
def getDwordValue(self, addr):
return self.r.cmdj("pv4j 1 @%d" % addr)['value']
def getQWordValue(self, addr):
return self.r.cmdj("pv8j 1 @%d" % addr)['value']
def isThumbMode(self, addr):
return self.r.cmdj("afij @%d" % addr)[0]['bits'] == 16
# gets name of smallest of segments containing addr, unless smallest is set to False
def getSegmentName(self, addr, smallest=True):
flt = lambda x: x['vaddr'] <= addr and (x['vaddr'] + x['vsize']) > addr
try:
if smallest:
return min(list(filter(flt, self.cache['segments'])), key = lambda x: x['vsize'])['name']
else:
return max(list(filter(flt, self.cache['segments'])), key = lambda x: x['vsize'])['name']
except:
return ""
def getSegmentStart(self, addr):
flt = lambda x: x['vaddr'] <= addr and (x['vaddr'] + x['vsize']) > addr
try:
return list(filter(flt, self.cache['segments']))[0]['vaddr']
except:
return -1
def getSegmentEnd(self, addr):
flt = lambda x: x['vaddr'] <= addr and (x['vaddr'] + x['vsize']) > addr
try:
seg = list(filter(flt, self.cache['segments']))[0]
return seg['vaddr'] + seg['vsize']
except:
return -1
def getSegmentSize(self, addr):
return self.getSegmentEnd(addr) - self.getSegmentStart(addr)
# Radare2 fills in unknown bytes with null bytes
def getSegmentDefinedSize(self, addr):
return self.getSegmentSize(addr)
def getSegments(self):
return list(map(lambda x: x['vaddr'], self.cache['segments']))
# if any of the section APIs fail, the address may still be a part of a segment
def getSectionName(self, addr, smallest=True):
flt = lambda x: x['vaddr'] <= addr and (x['vaddr'] + x['vsize']) > addr
sections = list(filter(flt, self.cache['sections']))
if len(sections) > 0:
if smallest:
return min(sections, key = lambda x: x['vsize'])['name']
else:
return max(sections, key = lambda x: x['vsize'])['name']
else:
return self.getSegmentName(addr)
def getSectionStart(self, addr):
flt = lambda x: x['vaddr'] <= addr and (x['vaddr'] + x['vsize']) > addr
sections = list(filter(flt, self.cache['sections']))
if len(sections) > 0:
return sections[0]['vaddr']
else:
return self.getSegmentStart(addr)
def getSectionEnd(self, addr):
flt = lambda x: x['vaddr'] <= addr and (x['vaddr'] + x['vsize']) > addr
sections = list(filter(flt, self.cache['sections']))
if len(sections) > 0:
return sections[0]['vaddr'] + sections[0]['size']
else:
return self.getSegmentEnd(addr)
def getSectionSize(self, addr):
flt = lambda x: x['vaddr'] <= addr and (x['vaddr'] + x['vsize']) > addr
sections = list(filter(flt, self.cache['sections']))
if len(sections) > 0:
return sections[0]['size']
else:
return self.getSegmentSize(addr)
def getSections(self):
return list(map(lambda x: x['vaddr'], self.cache['sections']))
# gets disassembled instruction with names and comments as a string
def getDisasmLine(self, addr):
insn = self._getInsn(addr)
# invalid instruction bug
if 'disasm' in insn and 'comment' in insn:
return insn['disasm'] + " ; %s" % base64.b64decode(insn['comment'])
elif 'disasm' in insn:
return insn['disasm']
else:
return "<error retrieving insn>"
def getName(self, addr):
try:
ret = list(filter(lambda x: x['offset'] == addr and
x['name'][:4] != "fcn." and
re.match(r"entry[\d]+$", x['name']) == None,
self.cache['fn']['symbols']))[0]['name']
except:
try:
ret = list(filter(lambda x: x['offset'] == addr and
x['name'][:4] != "fcn." and
re.match(r"entry[\d]+$", x['name']) == None,
self.cache['fn']['imports']))[0]['name']
except:
try:
ret = list(filter(lambda x: x['offset'] == addr and
x['name'][:4] != "fcn." and
re.match(r"entry[\d]+$", x['name']) == None,
self.cache['fn']['all']))[0]['name']
except:
try:
ret = filter(lambda x: x['offset'] == addr and
re.match(r"entry[\d]+$", x['name']) == None,
self.cache['fn']['all'])[0]['name']
except:
ret = ""
return ret
def getNameAddr(self, name):
try:
return list(filter(lambda x: x['name'].replace("\n", "") == name, self.cache['fn']['all']))[0]['offset']
except:
try:
return list(filter(lambda x: self.normalizeFuncName(x['name'].replace("\n", ""))
== self.normalizeFuncName(name), self.cache['fn']['all']))[0]['offset']
except:
# if it's a hexadecimal number such as returned from getOpnd, convert it to an integer
if name[:2] == "0x":
return int(name, 16)
else:
self.eh.logger.debug("error in getNameAddr")
return None
def _getOpndDict(self, addr, opndNum):
opndCnt = len(self._getOpcode(addr)['opex']['operands'])
if opndNum > opndCnt - 1:
return None
return self._getOpcode(addr)['opex']['operands'][opndNum]
def getOpndType(self, addr, opndNum):
mnem = self.getMnem(addr)
opnd = self._getOpndDict(addr, opndNum)
if opnd is None:
return None
if opnd['type'] == "reg":
return self.o_reg
elif opnd['type'] == "imm":
if mnem == "call":
return self.o_near
else:
return self.o_imm
elif opnd['type'] == "mem":
if "base" in opnd:
if opnd['disp'] == 0:
return self.o_phrase
else:
return self.o_displ
elif opnd['disp'] != 0:
return self.o_mem
return None
def getOpndValue(self, addr, opndNum):
opnd = self._getOpndDict(addr, opndNum)
if opnd is None:
return None
if opnd['type'] == "imm":
return opnd['value']
elif opnd['type'] == "mem":
return opnd['disp']
return None
def makeInsn(self, addr):
pass
def createFunction(self, addr):
pass
def getFlowChart(self, addr):
bbs = self._getBasicBlocks(addr)
flowchart = []
id = 0
for bb in bbs:
flowchart.append(BasicBlock(flowchart,
id,
bb['addr'],
bb['size'],
bb.get('jump', -1),
bb.get('fail', -1)))
id += 1
return flowchart
def getSpDelta(self, addr):
return 0
def getXrefsTo(self, addr):
return list(map(lambda x: x['from'], list(filter(lambda y: y['opcode'] != "invalid", self.r.cmdj("axtj %d" % addr)))))
def getArch(self):
return self.arch
def getBitness(self):
return self.bitness
def getFileType(self):
return self.filetype
def getInsnSize(self, addr):
return self._getInsn(addr)['size']
def isTerminatingBB(self, bb):
if len(list(bb.succs())) == 0:
return True
return False
def skipJumpTable(self, addr):
# finds next block after the immediate next block which has the jump table in it
try:
return list(filter(lambda x: x['addr'] > addr + 4, self._getBasicBlocks(addr)))[0]['addr']
except:
return addr
def setName(self, addr, name, size=0):
if self.getFuncStart(addr) == addr:
if size == 0:
size = self.getFuncEnd(addr) - self.getFuncStart(addr)
if name[:4] != "sym.":
name = "sym." + name
self.r.cmd("fs symbols; f %s %d %d" % (name, size, addr))
self.cache['fn']['symbols'] = self.r.cmdj("fnj")
self.r.cmd("fs *")
self.cache['fn']['all'] = self.r.cmdj("fnj")
def setComment(self, addr, comment, repeatable=False):
self.r.cmd("CCu base64:%s @%d" % (base64.b64encode(comment), addr))
def normalizeFuncName(self, funcName):
# remove Radare2's flag space prefixes
if funcName[:4] == "sym.":
funcName = funcName[4:]
if funcName[:4] == "imp.":
funcName = funcName[4:]
if funcName[:5] == "func.":
funcName = funcName[5:]
if funcName[:4] == "fcn.":
funcName = funcName[4:]
if funcName[:4] == "sub.":
funcName = funcName[4:]
# remove Radare2's library prefix
funcName = re.sub(r"[A-Za-z0-9_]+\.dll_", "", funcName)
return funcName