forked from JonathanSalwan/ROPgadget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binary.py
74 lines (60 loc) · 2.3 KB
/
binary.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
#!/usr/bin/env python2
## -*- coding: utf-8 -*-
##
## Jonathan Salwan - 2014-05-12 - ROPgadget tool
##
## http://twitter.com/JonathanSalwan
## http://shell-storm.org/project/ROPgadget/
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
from loaders.elf import *
from loaders.pe import *
from loaders.raw import *
from loaders.macho import *
from loaders.universal import *
class Binary:
def __init__(self, options):
self.__fileName = options.binary
self.__rawBinary = None
self.__binary = None
try:
fd = open(self.__fileName, "rb")
self.__rawBinary = fd.read()
fd.close()
except:
print "[Error] Can't open the binary or binary not found"
return None
if options.rawArch and options.rawMode:
self.__binary = Raw(self.__rawBinary, options.rawArch, options.rawMode)
elif self.__rawBinary[:4] == "7f454c46".decode("hex"):
self.__binary = ELF(self.__rawBinary)
elif self.__rawBinary[:2] == "4d5a".decode("hex"):
self.__binary = PE(self.__rawBinary)
elif self.__rawBinary[:4] == "cafebabe".decode("hex"):
self.__binary = UNIVERSAL(self.__rawBinary)
elif self.__rawBinary[:4] == "cefaedfe".decode("hex") or self.__rawBinary[:4] == "cffaedfe".decode("hex"):
self.__binary = MACHO(self.__rawBinary)
else:
print "[Error] Binary format not supported"
return None
def getFileName(self):
return self.__fileName
def getRawBinary(self):
return self.__rawBinary
def getBinary(self):
return self.__binary
def getEntryPoint(self):
return self.__binary.getEntryPoint()
def getDataSections(self):
return self.__binary.getDataSections()
def getExecSections(self):
return self.__binary.getExecSections()
def getArch(self):
return self.__binary.getArch()
def getArchMode(self):
return self.__binary.getArchMode()
def getFormat(self):
return self.__binary.getFormat()