-
Notifications
You must be signed in to change notification settings - Fork 453
/
render-ida-import-script.py
152 lines (123 loc) · 5.71 KB
/
render-ida-import-script.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
#!/usr/bin/env python3
"""
render-ida-import-script.py
Translate a floss result document into an IDA Python script
that marks up the current workspace.
Usage:
$ floss suspicious.exe -j > floss-results.json
$ python render-ida-import-script.py floss-results.json > apply_floss.py
# now run `apply_floss.py` in IDA
Copyright (C) 2021 Mandiant, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at: [package root]/LICENSE.txt
Unless required by applicable law or agreed to in writing, software distributed under the License
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
"""
import sys
import base64
import logging
import argparse
from pathlib import Path
from floss.results import AddressType, ResultDocument
logger = logging.getLogger("floss.render-ida-import-script")
def render_ida_script(result_document: ResultDocument) -> str:
"""
Create IDAPython script contents for IDB file annotations.
"""
main_commands = []
for ds in result_document.strings.decoded_strings:
if ds.string != "":
b64 = base64.b64encode(ds.string.encode("utf-8")).decode("ascii")
b64 = 'base64.b64decode("%s").decode("utf-8")' % b64
if ds.address_type == AddressType.GLOBAL:
main_commands.append('print("FLOSS: string \\"%%s\\" at global VA 0x%x" %% (%s))' % (ds.address, b64))
main_commands.append('AppendComment(%d, "FLOSS: " + %s, True)' % (ds.address, b64))
else:
main_commands.append(
'print("FLOSS: string \\"%%s\\" decoded at VA 0x%x" %% (%s))' % (ds.decoded_at, b64)
)
main_commands.append('AppendComment(%d, "FLOSS: " + %s)' % (ds.decoded_at, b64))
main_commands.append('print("Imported decoded strings from FLOSS")')
for ss in result_document.strings.stack_strings:
if ss.string != "":
b64 = base64.b64encode(ss.string.encode("utf-8")).decode("ascii")
b64 = 'base64.b64decode("%s").decode("utf-8")' % b64
main_commands.append(
'AppendLvarComment(%d, %d, "FLOSS stackstring: " + %s, True)' % (ss.function, ss.frame_offset, b64)
)
main_commands.append('print("Imported stackstrings from FLOSS")')
for ts in result_document.strings.tight_strings:
if ts.string != "":
b64 = base64.b64encode(ts.string.encode("utf-8")).decode("ascii")
b64 = 'base64.b64decode("%s").decode("utf-8")' % b64
main_commands.append(
'AppendLvarComment(%d, %d, "FLOSS tightstring: " + %s, True)' % (ts.function, ts.frame_offset, b64)
)
main_commands.append('print("Imported tightstrings from FLOSS")')
script_content = """
import base64
def AppendComment(ea, string, repeatable=False):
current_string = get_cmt(ea, repeatable)
if not current_string:
cmt = string
else:
if string in current_string: # ignore duplicates
return
cmt = current_string + "\\n" + string
set_cmt(ea, cmt, repeatable)
def AppendLvarComment(fva, frame_offset, s, repeatable=False):
stack = get_func_attr(fva, FUNCATTR_FRAME)
if stack:
lvar_offset = get_func_attr(fva, FUNCATTR_FRSIZE) - frame_offset
if lvar_offset and lvar_offset > 0:
string = get_member_cmt(stack, lvar_offset, repeatable)
if not string:
string = s
else:
if s in string: # ignore duplicates
return
string = string + "\\n" + s
if set_member_cmt(stack, lvar_offset, string, repeatable):
print('FLOSS appended stackstring comment \\"%%s\\" at stack frame offset 0x%%x in function 0x%%x' %% (s, frame_offset, fva))
return
print('Failed to append stackstring comment \\"%%s\\" at stack frame offset 0x%%x in function 0x%%x' %% (s, frame_offset, fva))
def main():
print('Annotating %d strings from FLOSS for %s')
%s
ida_kernwin.refresh_idaview_anyway()
if __name__ == "__main__":
main()
""" % (
len(result_document.strings.decoded_strings)
+ len(result_document.strings.stack_strings)
+ len(result_document.strings.tight_strings),
result_document.metadata.file_path,
"\n ".join(main_commands),
)
return script_content
def main():
parser = argparse.ArgumentParser(description="Generate an IDA Python script to apply FLOSS results.")
parser.add_argument("/path/to/report.json", help="path to JSON document from `floss --json`")
logging_group = parser.add_argument_group("logging arguments")
logging_group.add_argument("-d", "--debug", action="store_true", help="enable debugging output on STDERR")
logging_group.add_argument(
"-q", "--quiet", action="store_true", help="disable all status output except fatal errors"
)
args = parser.parse_args()
args.report_path = getattr(args, "/path/to/report.json")
if args.quiet:
logging.basicConfig(level=logging.WARNING)
logging.getLogger().setLevel(logging.WARNING)
elif args.debug:
logging.basicConfig(level=logging.DEBUG)
logging.getLogger().setLevel(logging.DEBUG)
else:
logging.basicConfig(level=logging.INFO)
logging.getLogger().setLevel(logging.INFO)
result_document = ResultDocument.parse_file(Path(args.report_path))
print(render_ida_script(result_document))
return 0
if __name__ == "__main__":
sys.exit(main())