-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMiasmPlugin.py
47 lines (36 loc) · 1010 Bytes
/
MiasmPlugin.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
import os
import ida_idaapi
import ida_loader
import ida_kernwin
import ida_hexrays
my_dirname, _ = os.path.split(__file__)
#setattr(ida_hexrays, "MMAT_DEOB_MAP", getattr(ida_hexrays, "MMAT_LOCOPT"))
class MiasmPluginT(ida_idaapi.plugin_t):
flags = 0
comment = "This is miasm plugin"
help = ""
wanted_name = "Python Miasm Plugin"
wanted_hotkey = ""
def __init__(self):
print("start")
def init(self):
if not ida_hexrays.init_hexrays_plugin():
print("MiasmPlugin: no decompiler, skipping")
return ida_idaapi.PLUGIN_SKIP
print("Hex-rays version %s has been detected, %s ready to use" % (
ida_hexrays.get_hexrays_version(),
self.wanted_name))
import sys
modules_path = os.path.join(my_dirname, "miasm_modules")
if not modules_path in sys.path:
sys.path.append(modules_path)
import menu
menu.create_miasm_menu()
return ida_idaapi.PLUGIN_OK
def run(self, arg):
return True
def term(self):
return True
def PLUGIN_ENTRY():
return MiasmPluginT()
PLUGIN_ENTRY()