Skip to content

Commit

Permalink
added __init__ such that the plugin is usable from within binaryninja
Browse files Browse the repository at this point in the history
  • Loading branch information
mrphrazer committed Aug 14, 2021
1 parent aeeba6f commit ad2ebf8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Obfuscation Detection (v1.1)
# Obfuscation Detection (v1.2)
Author: **Tim Blazytko**

_Automatically detect obfuscated code and other state machines_
Expand Down
6 changes: 6 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from binaryninja import PluginCommand

from obfuscation_detection import detect_obfuscation

PluginCommand.register("Obfuscation Detection",
"Detects obfuscated code via heuristics", detect_obfuscation)
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"Windows": "",
"Linux": ""
},
"version": "1.1",
"version": "1.2",
"minimumbinaryninjaversion": 2487
}

0 comments on commit ad2ebf8

Please sign in to comment.