-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
New Binary Ninja Plugin #751
base: master
Are you sure you want to change the base?
Conversation
Note to self and other people using this: Line 197 of
|
Thanks! The plugin is amazing! :) |
Due to grantjenks/py-tree-sitter-languages#64 One needs to use
going forward. (With changes in requirements.txt unless using older versions.) |
This new version of Binary Ninja plugin will provide better experience over the existing one.
Features
It will not load the entire
il2cpp.h
header file into Binary Ninja, since this is super slow on big projects. (Shall we add an option to allow the user to still load the entire header file?)When the user wants to get type information on a function or a static
ScriptMetadata
item, the user would use Il2Cpp Annotate from the plugin menu to load function signature and all related global variable types. (Note: the type may not update immediately after annotation for Binary Ninja's problem, so the user has to manually switch to graph view and back to get the views updated.)It no longer requires preprocessing header file with
il2cpp_header_to_binja.py
. Instead, it uses tree-sitter to compute the type dependencies to comply with Binary Ninja's C++ parser.It additionally loads
ScriptMetadata
andScriptMetadataMethod
.Demo
Load
The menu Il2Cpp Load loads
script.json
andil2cpp.h
to the Binary Ninja instance.It can optionally mark the functions and global variables with names, string literal values, etc. If the user opens an existing BNDB, it does not need to load names, and this will make loading faster.
After loading and marking names, the functions and global data variables are marked without types.
Annotate
The menu Il2Cpp Annotate will load type information for a given function or data variable. The user does not have to select precisely the beginning of the function. It will detect the surrounding function at the current cursor position.
Annotate is only available after loading. If the user saves the project as BNDB, and reopens it, it requires to use Il2Cpp Load first without loading the names (Skip naming = Yes).
Annotate will load the types and all its dependents to Binary Ninja, and then load the function signature type or the data variable type.
After annotating function, the analysis may not update. The user has to switch to graph view and back to get it updated (shortcut: press
Space
twice). This is a known problem of Binary Ninja.Credits to @SyxP and @exstrim401 for their existing work. This code is based on @SyxP 's IL2CPPDumperBinja and @exstrim401 's version in this repository.