Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minimal Plugin Structure Stub #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions idapal.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,3 +337,24 @@ def unload_plugin():
if hooks is not None:
hooks.unhook()
hooks = None

# Minimal Plugin Structure Stub
class aiDAPalPlugin(idaapi.plugin_t):
flags = 0
comment = "aiDAPal Plugin"
help = "Analyzes and enhances functions in IDA"
wanted_name = "aiDAPal"
wanted_hotkey = ""

def init(self):
print("aiDAPal Plugin Initialized")
return idaapi.PLUGIN_OK

def run(self, arg):
print("aiDAPal Plugin Running")

def term(self):
print("aiDAPal Plugin Terminated")

def PLUGIN_ENTRY():
return aiDAPalPlugin()