forked from epi052/osed-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrop_ripper.py
executable file
·88 lines (73 loc) · 2.73 KB
/
rop_ripper.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
#!/usr/bin/env python3
"""
rop_ripper.py
Originally written by John Hammond
Modified by Keiran Smith (affix)
"""
import re
import sys
from struct import pack
worthy_regexes = [
r"xchg (...), (...)",
r"inc ...",
r"dec ...",
r"mov ..., ...",
r"push ... ; pop ...",
r"xor ..., ...",
r"neg ...",
r"mov ..., dword \[...\].*",
r"mov dword \[...\], ...",
r"add ..., ...",
r"sub ..., ...",
r"pop ...",
r"push ...",
r"pushad ...",
]
if len(sys.argv) < 2:
print(f"Usage : {sys.argv[0]} <gadets_file> <badchars>")
sys.exit(1)
bad_characters = sys.argv[2].encode("utf-8")
for index, regex in enumerate(worthy_regexes):
worthy_regexes[index] = (
"(0x[a-f0-9]{8}): " + regex + r" ; (ret\s+|retn 0x00\d+\s+|);"
)
found = []
output = []
with open(sys.argv[1]) as h:
for line in h:
line = line.strip()
if re.match(r"0x[a-f0-9]{8}: ", line):
for regex in worthy_regexes:
if re.match(regex, line):
address, instructions = line.split(":")
for bad in bad_characters:
if bad in pack("I", int(address, 16)):
break
else:
instructions = instructions.strip()
instructions = instructions.replace("(1 found)", "")
instructions = instructions.strip()
instructions = instructions.rstrip(";")
instructions = instructions.strip()
instructions = instructions.replace(";", "and")
instructions = instructions.replace(",", "")
instructions = instructions.replace(" ", "_")
instructions = instructions.replace("[", "MEM_")
instructions = instructions.replace("]", "_ADDRESS")
instructions = instructions.rstrip("_and_ret")
# If we have something with a retn but already have a clean one
# don't use the retn
if "_and_retn_" in instructions:
instructions_base = instructions[
: instructions.index("_and_retn")
]
else:
instructions_base = instructions
# Store this if we have not seen it before
if instructions_base not in found:
output.append(f"{instructions} = {address}")
found.append(instructions)
output.sort()
for out in output:
var, val = out.split("=")#
print(f"{var:70} = {val}")