當前位置: 首頁>>代碼示例>>Python>>正文


Python idaapi.action_handler_t方法代碼示例

本文整理匯總了Python中idaapi.action_handler_t方法的典型用法代碼示例。如果您正苦於以下問題:Python idaapi.action_handler_t方法的具體用法?Python idaapi.action_handler_t怎麽用?Python idaapi.action_handler_t使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在idaapi的用法示例。


在下文中一共展示了idaapi.action_handler_t方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: import idaapi [as 別名]
# 或者: from idaapi import action_handler_t [as 別名]
def __init__(self):
        idaapi.action_handler_t.__init__(self) 
開發者ID:FSecureLABS,項目名稱:win_driver_plugin,代碼行數:4,代碼來源:create_tab_table.py

示例2: __init__

# 需要導入模塊: import idaapi [as 別名]
# 或者: from idaapi import action_handler_t [as 別名]
def __init__(self):
            idaapi.action_handler_t.__init__(self)

        # Say hello when invoked. 
開發者ID:x64dbg,項目名稱:x64dbgida,代碼行數:6,代碼來源:x64dbgida.py

示例3: __init__

# 需要導入模塊: import idaapi [as 別名]
# 或者: from idaapi import action_handler_t [as 別名]
def __init__(self, fn):
                idaapi.action_handler_t.__init__(self)
                self.fn = fn 
開發者ID:vrtadmin,項目名稱:FIRST-plugin-ida,代碼行數:5,代碼來源:first.py

示例4: __init__

# 需要導入模塊: import idaapi [as 別名]
# 或者: from idaapi import action_handler_t [as 別名]
def __init__(self, action):
        idaapi.action_handler_t.__init__(self)
        self.action = action 
開發者ID:andreafioraldi,項目名稱:IDAngr,代碼行數:5,代碼來源:main_gui.py

示例5: __init__

# 需要導入模塊: import idaapi [as 別名]
# 或者: from idaapi import action_handler_t [as 別名]
def __init__(self):
        idaapi.action_handler_t.__init__(self)

    # Say hello when invoked. 
開發者ID:Cisco-Talos,項目名稱:GhIDA,代碼行數:6,代碼來源:ghida.py

示例6: __init__

# 需要導入模塊: import idaapi [as 別名]
# 或者: from idaapi import action_handler_t [as 別名]
def __init__(self):
		self.funcs = {}
		data = open('modules.txt', 'r').read()
		data =data.split('\n')
		for line in data:
			if line != '':
				temp = re.split('\s+', line)
				self.funcs[int(temp[0],16)] = temp[-1]
		idaapi.action_handler_t.__init__(self) 
開發者ID:sysopfb,項目名稱:Malware_Scripts,代碼行數:11,代碼來源:find_functions.py

示例7: __init__

# 需要導入模塊: import idaapi [as 別名]
# 或者: from idaapi import action_handler_t [as 別名]
def __init__(self, callback):
        idaapi.action_handler_t.__init__(self)
        self.callback = callback 
開發者ID:AirbusCyber,項目名稱:grap,代碼行數:5,代碼來源:PatternGenerationWidget.py

示例8: __init__

# 需要導入模塊: import idaapi [as 別名]
# 或者: from idaapi import action_handler_t [as 別名]
def __init__(brutal_self):
        idaapi.action_handler_t.__init__(brutal_self) 
開發者ID:tmr232,項目名稱:BRUTAL-IDA,代碼行數:4,代碼來源:brutal_ida.py

示例9: add_menus

# 需要導入模塊: import idaapi [as 別名]
# 或者: from idaapi import action_handler_t [as 別名]
def add_menus(self):
        # To avoid creating multiple plugin_t instances
        this = self
        class StartHandler(idaapi.action_handler_t):
            def __init__(self):
                idaapi.action_handler_t.__init__(self)
                
            def activate(self, ctx):
                this.run()
                return 1

            def update(self, ctx):
                return idaapi.AST_ENABLE_ALWAYS

        act_name = '%s:start' % PLUGNAME
        act_desc = idaapi.action_desc_t(
            act_name,       # The action name. Must be unique
            PLUGNAME,       # Action Text
            StartHandler(), # Action handler
            None,           # Optional shortcut
            'Start plugin', # Action tooltip
            122             # Icon
        )
        idaapi.register_action(act_desc)
        idaapi.attach_action_to_menu(
            'Debugger/Debugger windows/',
            act_name,
            idaapi.SETMENU_APP
        ) 
開發者ID:danigargu,項目名稱:heap-viewer,代碼行數:31,代碼來源:heap_viewer.py

示例10: __init__

# 需要導入模塊: import idaapi [as 別名]
# 或者: from idaapi import action_handler_t [as 別名]
def __init__(self, outer_instance):
             idaapi.action_handler_t.__init__(self)
             self.outer_instance = outer_instance 
開發者ID:ynvb,項目名稱:DIE,代碼行數:5,代碼來源:DIE.py


注:本文中的idaapi.action_handler_t方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。