Skip to content

Commit

Permalink
Adding plugin.json and README.md updates for Plugin Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Watson committed Sep 6, 2019
1 parent 8dbf9e1 commit 59b51a6
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 19 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MSP430 Architecture Plugin (v0.3)
# MSP430 Architecture Plugin (v0.4)
Author: **Josh Watson**

_A disassembler and lifter for the MSP430 architecture._
Expand All @@ -11,11 +11,15 @@ To install this plugin, navigate to your Binary Ninja plugins directory, and run

```git clone https://github.com/joshwatson/binaryninja-msp430.git msp430```

Alternatively, clone the repo whereever you want, and add a symbolic link in your plugins directory.

Alternatively-Alternatively, use Binary Ninja's [Plugin Manager](https://binary.ninja/2019/07/04/plugin-manager-2.0.html) to install it.

## Minimum Version

This plugin requires the following minimum version of Binary Ninja:

* release - 1.1.776
* release - 1.1.1689

## License

Expand Down
40 changes: 23 additions & 17 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
{
"plugin": {
"name": "MSP430 Architecture Plugin",
"type": ["architecture"],
"api": "python2",
"description": "A disassembler and lifter for the MSP430 architecture.",
"longdescription": "This plugin disassembles MSP430 assembly code and generates LLIL.\n\nTo install this plugin, navigate to your Binary Ninja plugins directory, and run\n\n```git clone https://github.com/joshwatson/binaryninja-msp430.git msp430```\n\nThen create a python file called `msp430.py` with the contents\n\n```import msp430```",
"license": {
"name": "MIT",
"text": "Copyright (c) 2016 Josh Watson.\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."
},
"version": "0.3",
"author": "Josh Watson",
"minimumBinaryNinjaVersion": {
"release": "1.1.922"
}
}
}
"pluginmetadataversion": 2,
"name": "msp430 Architecture",
"type": ["architecture" ],
"api": ["python2", "python3"],
"description": "MSP430 Architecture Plugin for Binary Ninja",
"longdescription": "This plugin implements the MSP430 architecture disassembler and lifter for Binary Ninja.",
"license": {
"name": "MIT",
"text": "Copyright (c) 2017 Josh Watson\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", "Darwin"],
"installinstructions" : {
"Windows":"",
"Linux":"",
"Darwin":""
},
"dependencies": {
},
"version": "0.4",
"author": "Josh Watson",
"minimumbinaryninjaversion": 1689
}

0 comments on commit 59b51a6

Please sign in to comment.