Skip to content

Commit 62f034d

Browse files
committed
Merge branch 'develop'
2 parents f41a0db + 4e1cc36 commit 62f034d

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

install.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ def install_plugin():
119119
#
120120
# even if the plugin is not in use, the Keystone DLL / lib will be
121121
# loaded into memory by nature of Python imports. we are going to
122-
# try and AGGRESSIVELY unload it such that we can ovewrite it
122+
# try and AGGRESSIVELY unload it such that we can overwrite it
123123
#
124124
# because this is pretty dangerous, we set this flag to ensure the
125-
# patching plugin is completeley neutured and cannot be used in any
125+
# patching plugin is completeley neutered and cannot be used in any
126126
# form until IDA is restarted
127127
#
128128

@@ -134,7 +134,7 @@ def install_plugin():
134134
print("[!] Please ensure no other instance of IDA are running and try again...")
135135
return False
136136

137-
# remove the rest of the plugin only IF removing Keystone succedded
137+
# remove the rest of the plugin only IF removing Keystone succeeded
138138
shutil.rmtree(patching_directory)
139139

140140
#
@@ -165,6 +165,11 @@ def install_plugin():
165165
# load the plugin if this was a fresh install
166166
plugin_path = os.path.join(plugins_directory, 'patching.py')
167167
ida_loader.load_plugin(plugin_path)
168+
169+
# if a database appears open, force plugin core to load immediately
170+
if ida_loader.get_path(ida_loader.PATH_TYPE_IDB):
171+
IDA_GLOBAL_SCOPE.patching.core.load()
172+
168173
return True
169174

170175
def remove_keystone(keystone_directory):

plugins/patching/core.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
import ida_ua
66
import ida_auto
7+
import ida_nalt
78
import ida_bytes
89
import ida_lines
910
import ida_idaapi
@@ -45,8 +46,6 @@ def __init__(self, defer_load=False):
4546
# IDA UI Hooks
4647
self._ui_hooks = UIHooks()
4748
self._ui_hooks.ready_to_run = self.load
48-
self._ui_hooks.populating_widget_popup = self._populating_widget_popup
49-
self._ui_hooks.get_lines_rendering_info = self._highlight_lines
5049
self._ui_hooks.hook()
5150

5251
# IDA 'Processor' Hooks
@@ -133,6 +132,10 @@ def load(self):
133132
self._ui_hooks.unhook()
134133
return
135134

135+
# enable additional hooks since the plugin is going live
136+
self._ui_hooks.populating_widget_popup = self._populating_widget_popup
137+
self._ui_hooks.get_lines_rendering_info = self._highlight_lines
138+
136139
# finish loading the plugin and integrating its UI elements / actions
137140
self._init_actions()
138141
self._idp_hooks.hook()

0 commit comments

Comments
 (0)