-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
ida_segs_to_bochs_sym.py
33 lines (28 loc) · 1.03 KB
/
ida_segs_to_bochs_sym.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
# by David Reguera Garcia aka Dreg
# https://github.com/therealdreg/ida_bochs_windows
# https://www.fr33project.org - [email protected] @therealdreg
import ida_kernwin
import ida_segment
cred = '''
IDA segments to Bochs syms
https://github.com/therealdreg/ida_bochs_windows
GNU General Public License v3.0
-
by David Reguera Garcia aka Dreg
Twitter @therealdreg
https://www.fr33project.org
https://github.com/therealdreg
'''
print(cred)
filename = ida_kernwin.ask_file(True, "*.txt", "Select file to save segments")
with open(filename, "w+") as file:
i = 0
print("\n")
for n in range(ida_segment.get_segm_qty()):
seg = ida_segment.getnseg(n)
if seg:
file.write(hex(seg.start_ea) + " " + ida_segment.get_segm_name(seg).replace(".", "") + "\n")
file.write(hex(seg.end_ea) + " " + ida_segment.get_segm_name(seg).replace(".", "") + "_end" + "\n")
print("done segments saved -> ", filename)
# Type in bochs debugger: ldsym global "C:\\Users\\Dreg\\bochs\\sym.txt"