-
Notifications
You must be signed in to change notification settings - Fork 6
/
plugin.json
24 lines (24 loc) · 2.25 KB
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"pluginmetadataversion" : 2,
"name": "Ghinja",
"type": ["ui"],
"api": ["python3"],
"description": "Plugin to embed Ghidra Decompiler into Binary Ninja",
"longdescription": "This plugin allows you to enable a dock in the UI that will show a result of the Ghidra decompiler for the given function. There is basic syntax highlighting and renaming functions and variables in the Binary Ninja view is refleced in the Ghinja view as well. The plugin will prompt you for pointing it to the path of the `analyzeHeadless` file which is relevant for your operating system. When chosen it will automatically start ghidra decompilation whenever a new file is opened. The decompile results are stored in the `~/.ghinja_projects` folder.\n\n ![Sample](https://github.com/Martyx00/ghinja/blob/master/img/demo.gif?raw=true \"Sample\")\n\n **Available Hotkeys:**\n\n* ***N*** - When Ghinja window has focus you can use this hotkey to rename the variable that does not have equivalent in the Binary Ninja view. This function allows you to rename anything, however all labels (functions, variables, etc.) that are are avialable in Binary Ninja view should be renamed there rather than in Ghinja as that is string replace only.\n* ***F*** - When Ghinja window has focus you can use this hotkey to perform a simple text seatch in the decompiler result.\n",
"license": {
"name": "Apache-2.0",
"text": "Copyright 2020 Martin Petran\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n\thttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License."
},
"platforms" : ["Darwin", "Linux", "Windows"],
"installinstructions" : {
"Darwin" : "N/A",
"Linux" : "N/A",
"Windows" : "N/A"
},
"dependencies": {
"other": ["This plugin requires a working install of Ghidra (https://ghidra-sre.org/)."]
},
"version": "1.10",
"author": "Martin Petran",
"minimumbinaryninjaversion": 3233
}