From 9f17b2f77901be78468a57008af5cb055d62a89b Mon Sep 17 00:00:00 2001 From: "Meador Inge (Carve Systems)" Date: Thu, 11 Jun 2020 19:18:38 -0500 Subject: [PATCH] Release version 0.5.0. NOTE: The previous 1.0.0 was a typo. --- README.md | 30 +++++++++++++++++++++++++++++- plugin.json | 2 +- requirements.txt | 1 + 3 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 06aa338..175a156 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,35 @@ This is a plugin for disassembling and lifting WASM images. This plugin requires the following minimum version of Binary Ninja: - * dev - 1.1.1344 + * 2170 + +## Installation + +First install the necessary Python dependencies: + +``` +$ pip install -r requirements.txt +``` + +Then clone the plugin: + +``` +git clone https://github.com/CarveSystems/binjawa.git +``` + +and link the plugin into your Binary Ninja plugin directory: + +### OS X + +``` +ln -s /binjawa ~/Library/Application\ Support/Binary\ Ninja/plugins/binjawa +``` + +### Linux + +``` +ln -s /binjawa ~/.binaryninja/plugins/binjawa +``` ## License diff --git a/plugin.json b/plugin.json index 83865bb..5483e5d 100644 --- a/plugin.json +++ b/plugin.json @@ -9,7 +9,7 @@ "name": "MIT", "text": "Copyright (c) 2019 Meador Inge\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": "1.0.0", + "version": "0.5.0", "author": "Meador Inge", "minimumBinaryNinjaVersion": 2170 } diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..50e40ab --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +wasamole==0.5.0