-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathplugin.json
More file actions
30 lines (30 loc) · 1.88 KB
/
Copy pathplugin.json
File metadata and controls
30 lines (30 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"pluginmetadataversion": 2,
"name": "binja-diff",
"author": "matteyeux",
"type": [
"ui",
"helper"
],
"api": [
"python3"
],
"description": "Binary Ninja diffing plugin",
"longdescription": "Diffs the currently open binary against a second file dropped onto the view. Function matching is performed by QBinDiff (Quarkslab) driven by a native Binary Ninja loader backend, so no intermediate export file (Quokka, BinExport) is required. Results are presented as a sortable function match table plus side-by-side panes for control flow graphs, assembly, and all three Binary Ninja IL levels. Also registers QBinDiff as a provider for Binary Ninja's Binary Similarity sessions, where it can run alongside Google BinDiff and WARP and be weighed against them by a resolver; that half works headlessly and needs no UI.",
"license": {
"name": "Apache-2.0",
"text": "Copyright 2026 matteyeux\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",
"Windows",
"Linux"
],
"installinstructions": {
"Darwin": "Copy to ~/Library/Application\\ Support/Binary\\ Ninja/plugins/ or use the Plugin Manager",
"Windows": "Copy to `%APPDATA%\\\\Binary Ninja\\\\plugins` or use the Plugin Manager",
"Linux": "Copy to `~/.binaryninja/plugins/` or use the Plugin Manager"
},
"version": "1.1.0",
"minimumbinaryninjaversion": 10271
}