Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
dipusone committed Jan 1, 2023
1 parent b3c1e45 commit 073d623
Show file tree
Hide file tree
Showing 3 changed files with 607 additions and 56 deletions.
12 changes: 6 additions & 6 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from binaryninja import *
from binaryninja import PluginCommand
from .golang_gopclntab_parser import rename_functions

def do_nothing(bv,function):
show_message_box("Do Nothing", "Congratulations! You have successfully done nothing.\n\n" +
"Pat yourself on the back.", MessageBoxButtonSet.OKButtonSet, MessageBoxIcon.ErrorIcon)

PluginCommand.register_for_address("Useless Plugin", "Basically does nothing", do_nothing)
PluginCommand.register(
"golang\\auto-rename functions (gopclntab)",
"Automatically rename go functions based on information from gopclntab",
rename_functions)
Loading

0 comments on commit 073d623

Please sign in to comment.