diff options
| author | gerard <gerard@example.com> | 2026-06-01 11:57:41 +0200 |
|---|---|---|
| committer | gerard <gerard@example.com> | 2026-06-01 11:57:41 +0200 |
| commit | 9d441a2c111a0ef634d92c2ddebdd53f5a89baa5 (patch) | |
| tree | 40858c469732729c01bd05a5c524ebf10294b384 /__init__.py | |
| parent | 14f1c8d9a6b8c46de82d50df4c5e1b3a506d688e (diff) | |
Diffstat (limited to '__init__.py')
| -rw-r--r-- | __init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/__init__.py b/__init__.py index c0e2126..06f3a33 100644 --- a/__init__.py +++ b/__init__.py @@ -61,8 +61,9 @@ def main(ctx): show_graph_report("Expression tree", graph) +PluginCommand.register("SSA Graphing", "Graphs an LLIL SSA AST", main) # Register a keybind for the analysis UIAction.registerAction("Graph LLIL SSA AST", QKeySequence("Ctrl + F3")) UIActionHandler.globalActions().bindAction("Graph LLIL SSA AST", UIAction(main)) -Menu.mainMenu("Plugins").addAction("Analyze Instruction", "Plugins") +Menu.mainMenu("Plugins").addAction("Graph LLIL SSA AST", "Plugins") |
