-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextract.py
464 lines (366 loc) · 14.2 KB
/
extract.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
#!/usr/bin/env python
##
## Aniruddhan Murali - 2020-03-01 - CFI target extractor
##
##
import ropgadget
import os
import re
import angr
import sys
import argparse
from bisect import bisect_left
# Define each gadget
class Gadgets:
idno = -1
startaddr=-1
endaddr=-1
insnlist = []
nextptr = []
EC = []
goestoallnodes=0
def __init__(self,idno,insnlist,startaddr,endaddr,EC):
self.idno=idno
self.startaddr=startaddr
self.endaddr=endaddr
self.insnlist=insnlist
self.EC=EC
self.nextptr=[]
class GadgetExtractor:
def __init__(self, binname):
self.proj = angr.Project(binname)
# Start of all valid addresses here
self.alladdress=[]
# List of all CFI Instrumented Indirect call gadgets start and end and also the register usied for the indirect jump
self.ICstartlist=[]
self.ICendlist=[]
self.ICreg=[]
# List of allowed targets according to LLVM-CFI for instrumented code
self.simangrtargetaddr=[]
# Allowed targets for each indirect jump in the same order as above
self.targets=[]
print("Calculating instrumented code regions boundary....")
self._populateInstrumentedICList(binname)
print("Finished calculating instrumented code regions boundary")
print("Now simulate instrumented regions with possible address....")
self._allowedtargetsIC()
print("Finished simulating all instrumented code regions with possible targets")
self._analyzeGadgetList(binname,100)
self.__calculateAIR()
def _populateInstrumentedICList(self, bname):
Address = os.popen('objdump -d '+bname).read().split('\n')
state=0
startinstrument=''
for line in Address:
length=len(line)
if (length>19 and line[0]==' ' and line[1]==' '):
self.alladdress += [line[2:8]]
# To reduce number of targets for LLVM cfi we can look at functions with .cfi appended to them.
# This is a neat indicator of net pool of valid jump targets for instrumented code.
# All we have to do is find the mappings of instrumented gadgets to .cfi functions
if ".cfi>" in line:
self.simangrtargetaddr+=[line[2:8]]
if length >= 32:
if line[32:36] == 'mova':
if state==2:
continue
state=1
startinstrument=line[2:8]
if line[32:35] == 'ud2':
if state == 1:
state = 2
else:
state = 0
if line[32:35] == 'cal':
if state == 2:
[boolarr,insn,operands] = GetOperandsFromInstruction(line[32:])
if (not(len(operands)>=1 and IsRegister(operands[0]))):
continue
self.ICendlist += [int(line[2:8],16)]
self.ICstartlist += [int(startinstrument,16)]
self.ICreg += operands
state = 0
# Simulate a set of instrumented instructions repetitively to see all valid jump targets.
# The simulation is done via angr
def _allowedtargetsIC (self):
for i in range(len(self.ICreg)):
allowedtargets=[]
for a in self.simangrtargetaddr:
state = self.proj.factory.entry_state();
state.regs.rip=state.solver.BVV(self.ICstartlist[i], 64);
testjmp=state.solver.BVV(int(a,16), 64);
toexecute="state.regs."+self.ICreg[i]+"=testjmp"
exec(toexecute)
simgr = self.proj.factory.simulation_manager(state);
x=state.regs.rcx;
simgr.step();
oldrip = simgr.active[0].regs.rip
simgr.step();
newrip = simgr.active[0].regs.rip
if (state.solver.eval(oldrip) != state.solver.eval(newrip)):
allowedtargets+=[a]
self.targets += [allowedtargets]
def _analyzeGadgetList(self, bname,depth):
RawGadget = os.popen('ROPgadget --depth '+str(depth)+' --dump --binary '+bname).read()
ListGadget = RawGadget.split('\n');
graph=[]
labelmap={}
label=0
reducedgadgets=0
totalgadgets=0
for g in ListGadget:
EC=[]
if len(g)>=2 and g[0]=='0' and g[1]=='x':
totalgadgets=totalgadgets+1
Stmt =re.split(': | ; | //',g)
[s1,s2] = Bound(Stmt)
if len(self.ICstartlist) >=1:
index = BinarySearch(self.ICstartlist, s1)
else:
index = -1
if (index!=-1 and (self.ICstartlist[index] >= s1) and (self.ICstartlist[index] < s2)):
EC += self.targets[index]
reducedgadgets=reducedgadgets+1
else:
EC = GetEC(Stmt)
tempEC=[]
for e in EC:
if (IsMemLocation(e)):
if ((int(e[2:],16) < s1) or (int(e[2:],16) > s2)):
tempEC += [e[2:]]
else:
tempEC += [e]
EC = tempEC
labelmap[s1]=label
graph.append(Gadgets(label,g[1:],s1,s2,EC))
label=label+1
print("The gadget reduction is :")
print(reducedgadgets/totalgadgets)
for g in graph:
for e in g.EC:
if e =='*':
g.goestoallnodes=1
g.nextptr=[]
continue
if IsRegister(e):
g.nextptr=[]
g.goestoallnodes=1
continue
if int(e,16) in labelmap.keys():
g.nextptr += [labelmap[int(e,16)]]
#for g in graph:
#print("Gadget no :",g.idno)
#print("Instructions are as follows:")
#print(g.insnlist)
#print("Can the gadget go to every location? ",g.goestoallnodes)
#if (g.goestoallnodes == 0):
#print("Gadgets we can jump to with label no:")
#print(g.nextptr)
#print("Absolute addresses this gadget can jump to: ")
#print(g.EC)
#print('\n')
graph.sort(key= lambda d: d.startaddr)
self.gadgetgraph = graph
# This asks for a gadget starting at startaddr what are valid jump targets. The start address is enough but vital
def __call__(self, startaddr):
graph = self.gadgetgraph
search=int(int(startaddr,16))
#print(search)
idx = GadgetBinarySearch(graph, search)
#print(graph[idx].startaddr)
if idx ==-1:
print("Address given not part of any gadget")
return []
if graph[idx].goestoallnodes == 1:
return ["*"]
return graph[idx].EC
# This returns Bounds of all instrumented binary code in program
# as array of starting address and array of ending address
def __GetInstrumentationBoundary__(self):
# Convert array of integers to array of hex values manually
A=[]
B=[]
for i in self.ICstartlist:
A+=[hex(i)]
for i in self.ICendlist:
B+=[hex(i)]
return [A,B]
# We labeled each gadget returned by ROPGadget in the same order ROPGadget prints it
# We assume ROPGadget returns gadgets in a stable deterministic order
# If it can jump to particular gadget label we return gadget label list here
def __GadgetIdLinks__(self,label):
graph=self.gadgetgraph
for g in graph:
if (g.idno ==label):
if g.goestoallnodes == 1:
return ["*"]
return g.nextptr
return -1
def __calculateAIR(self):
print("Calculating AIR :")
binsize=int(self.alladdress[len(self.alladdress)-1],16)- int(self.alladdress[0],16)
AIR=0
for i in self.targets:
AIR=AIR+(1-(len(i)/binsize))
AIR=AIR/len(self.targets)
print(AIR)
def IsRegister(s):
registers=["fs","es","gs","cs","rip","rax","rcx","rdx","rbx","rsp","rbp","rsi","rdi","eax","ecx","edx","ebx","esp","ebp","esi","edi","ax","cx","dx","bx","sp","bp","si","di","ah","al","ch","cl","dh","dl","bh","bl","spl","bpl","sil","dil","r8","r8b","r8d","r9","r9b","r10","r10b","r11","r11b","r11d","r12","r12b","r12d","r13","r13b","r13d","r14","r14b","r14d","r15","r15b","r15d"]
if s in registers:
return 1
return 0
def IsMemLocation(s):
if len(s)>=2 and s[0]=='0' and s[1]=='x':
return 1
if len(s)==1 and s[0]>='0' and s[0]<='9':
return 1
if len(s)>=2 and s[0]=='-' and s[1]>='0' and s[1]<='9':
return 1
return 0
def GadgetBinarySearch(graph, target):
start = 0
end = len(graph)-1
while start < (end-1):
middle = (start + end)// 2
midpoint = graph[middle].startaddr
if midpoint > target:
end = middle
elif midpoint < target:
start = middle
else:
return middle
if graph[start].startaddr == target:
return start
if graph[end].startaddr == target:
return end
return -1
def BinarySearch(L, target):
start = 0
end = len(L)-1
while start < (end-1):
middle = (start + end)// 2
midpoint = L[middle]
if midpoint > target:
end = middle
elif midpoint < target:
start = middle
else:
return middle
if L[start] == target:
return start
if L[end] == target:
return end
return start
def hasNumbers(inputString):
return any(char.isdigit() for char in inputString)
# Find start and end of an arbitrary gadget from ROPgadget output
def Bound(Gadget):
length = (len(Gadget[-1])-1)//2
end = int(Gadget[0][12:18],16)+length-1
return int(Gadget[0][12:18],16),end
# Given an instruction from ROPgadget output retrieve it's operands
def GetOperandsFromInstruction(I):
instruction=re.split(' ',I)[0]
splitwords=re.split(',',I[len(instruction):])
operands=[]
operandsmembool=[]
for y in splitwords:
z = re.split("\*|\%|\(|\)",y)
for x in z:
if len(x) == 0:
continue
if '[' in x:
operandsmembool += [1]
else:
operandsmembool += [0]
y = re.split(" |\[|\]",x)
if len(y)==1 and len(y[0])>=2 and y[0][0]=='0' and y[0][1]=='x':
operands += [y[0]]
continue
if len(y)==1 and len(y[0])==1 and y[0][0]>='0' and y[0][0]<='9':
operands += [y[0]]
continue
for k in y:
if IsRegister(k):
operands += [k]
break
if IsMemLocation(k):
operands += [k]
return [operandsmembool,instruction,operands]
# We do not need to do simulation for non CFI instrumented gadgets as it is a waste od time
# Do a static analysis on gadgets that are not subsequences of CFI instrumented gadgets
# Return the Equivalence class
def GetEC(Gadget):
fixedregisters={}
EC=[]
jumped=0
#lastcomparedregs=[]
for s in Gadget:
[operandsmembool,instruction,operands] = GetOperandsFromInstruction(s)
#print(operands)
#print(operandsmembool)
#print(fixedregisters)
if len(instruction)==0:
continue
if instruction == "jmp":
if operandsmembool[0]==0 and (operands[0] in fixedregisters.keys()):
EC += [fixedregisters[operands[0]]]
return EC
if operands[0] not in EC:
EC += [operands[0]]
return EC
if instruction == "movabs":
fixedregisters[operands[0]] = operands[1]
if instruction == "mov":
if operandsmembool[0]==0 and IsRegister(operands[0]):
if operandsmembool[1]==0 and IsMemLocation(operands[1]):
fixedregisters[operands[0]] = operands[1]
if instruction == "call":
if (operands[0] in fixedregisters.keys()):
EC += [fixedregisters[operands[0]]]
return EC
EC += [operands[0]]
return EC
if instruction[0] == 'l' and instruction[1] == 'o' and instruction[2] == 'o' and instruction[3] == 'p':
if operands[0] not in EC:
EC += [operands[0]]
if instruction == "ud2":
if (jumped == 0):
return EC
if instruction[0] == 'r' and instruction[1] == 'e' and instruction[2] == 't':
EC += ["*"]
return EC
if instruction[0] == 'j':
if operandsmembool[0]==0 and (operands[0] in fixedregisters.keys()):
EC += [fixedregisters[operands[0]]]
if operands[0] not in EC:
EC += [operands[0]]
jumped=1
continue
jumped=0
return EC
if __name__ == "__main__":
binname=sys.argv[1]
ge = GadgetExtractor(binname)
print("*********Instrumented code targets*******")
print('\n')
print("Instrumented code starts at these list of addresses")
print(ge.ICstartlist)
print('\n')
print("Indirect calls jump through values on these registers")
print(ge.ICreg)
print('\n')
print("All allowed targets in hexadecimal per indirect jmp listed below:")
print(ge.targets)
print('\n')
#[x,y] = ge.__GetInstrumentationBoundary__()
#x= ge.__GadgetIdLinks__(186)
#print(x)
print("********Start of Querying******")
while (1):
startaddr=input("Enter the start address in hex: ")
if startaddr=='':
print("You have supplied an empty string. Please enter a start address. ")
continue
jmptargets = ge(startaddr)
print(jmptargets)