mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
f5ec434bf7
- added ui_term/ui_save/ui_saved/ui_get_ea_hint UI notifications - added ph_get_operand_info() to retrieve operand information while debugging - added PteDump.py script - some code refactoring - bugfix: idaapi.netnode.getblob() was limited to MAXSPECSIZE - bugfix: idc.GetString()/idaapi.get_ascii_contents()/idautils.Strings() were limited to MAXSTR string length - bugfix: idaapi.del_menu_item() was failing to delete some menu items - bugfix: dbg_bpt was called instead of dbg_trace for a DBG_Hooks class implementation (old bug from 0.9.x) - bugfix: Form.GetControlValue() was not working with numeric controls - bugfix: SetBptCnd() was broken - bugfix: idaapi.get_func_cmt() was memory leaking
77 lines
1.9 KiB
Python
77 lines
1.9 KiB
Python
#---------------------------------------------------------------------
|
|
# UI hook example
|
|
#
|
|
# (c) Hex-Rays
|
|
#
|
|
# Maintained By: IDAPython Team
|
|
#
|
|
#---------------------------------------------------------------------
|
|
|
|
import idaapi
|
|
|
|
class MyUiHook(idaapi.UI_Hooks):
|
|
def __init__(self):
|
|
idaapi.UI_Hooks.__init__(self)
|
|
self.cmdname = "<no command>"
|
|
|
|
def preprocess(self, name):
|
|
print("IDA preprocessing command: %s" % name)
|
|
self.cmdname = name
|
|
return 0
|
|
|
|
def postprocess(self):
|
|
print("IDA finished processing command: %s" % self.cmdname)
|
|
return 0
|
|
|
|
def saving(self):
|
|
"""
|
|
The kernel is saving the database.
|
|
|
|
@return: Ignored
|
|
"""
|
|
print("Saving....")
|
|
|
|
def saved(self):
|
|
"""
|
|
The kernel has saved the database.
|
|
|
|
@return: Ignored
|
|
"""
|
|
print("Saved")
|
|
|
|
def term(self):
|
|
"""
|
|
IDA is terminated and the database is already closed.
|
|
The UI may close its windows in this callback.
|
|
|
|
This callback is best used with a plugin_t with flags PLUGIN_FIX
|
|
"""
|
|
print("IDA terminated")
|
|
|
|
def get_ea_hint(self, ea):
|
|
"""
|
|
The UI wants to display a simple hint for an address in the navigation band
|
|
|
|
@param ea: The address
|
|
@return: String with the hint or None
|
|
"""
|
|
print("get_ea_hint(%x)" % ea)
|
|
|
|
|
|
#---------------------------------------------------------------------
|
|
# Remove an existing hook on second run
|
|
try:
|
|
ui_hook_stat = "un"
|
|
print("UI hook: checking for hook...")
|
|
uihook
|
|
print("UI hook: unhooking....")
|
|
uihook.unhook()
|
|
del uihook
|
|
except:
|
|
print("UI hook: not installed, installing now....")
|
|
ui_hook_stat = ""
|
|
uihook = MyUiHook()
|
|
uihook.hook()
|
|
|
|
print("UI hook %sinstalled. Run the script again to %sinstall" % (ui_hook_stat, ui_hook_stat))
|