-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.json
23 lines (23 loc) · 2.7 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
{
"pluginmetadataversion": 2,
"name": "Windows Driver Analyzer",
"type": ["helper"],
"api": ["python2", "python3"],
"description": "Find IRP dispatch routines and valid IOCTLs in a Windows kernel driver",
"longdescription": "This plugin will try to find and label IRP dispatch routines initialized in the\nDriverEntry routine. Additionally, this plugin will attempt to identify valid\nIOCTL control codes that the driver supports. Handler code for detected IOCTLs\nwill be labeled, and CTL\\_CODE macros will be generated.",
"license": {
"name": "MIT",
"text": "Copyright (c) 2019 shareef12.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
},
"platforms": ["Windows", "Linux"],
"installinstructions": {
"Windows": "The Windows distribution of Binary Ninja bundles a copy of python2.7. In order\nto install angr, you must install python2.7 on your system or in a virtualenv\nand make it available on sys.path. Note that attempting to install angr in the\nbundled python error will likely run into errors. On Windows systems, this\nplugin will automatically add \"C:\\Python27\\Lib\\site-packages\" to sys.path.\n\n1. Install Python2.7 to \"C:\\Python27\".\n\n1. From an Administrator command prompt, install angr.\n\n ```\n C:\\Python27\\python.exe -m pip install angr\n ```\n\n1. Copy this plugin to the Binary Ninja plugins folder at\n \"%appdata%\\Binary Ninja\\plugins\".",
"Linux": "1. Install angr.\n\n ```\n pip install angr\n ```\n\n1. Copy this plugin to the Binary Ninja plugins folder at\n \"~/.binaryninja/plugins/\"."
},
"dependencies": {
"pip": ["angr"]
},
"version": "1.0.0",
"author": "shareef12",
"minimumbinaryninjaversion": 1689
}