Add basic binja viz plugin (#347)

* Add basic binja plugin

* Inline lnk

* Better instructions
This commit is contained in:
Mark Mossberg
2017-06-23 18:18:11 -04:00
committed by GitHub
parent e2c0414dca
commit edbb613045
2 changed files with 77 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
## Installation
- Symlink the desired plugin into the [plugin directory](https://github.com/Vector35/binaryninja-api/tree/dev/python/examples#loading-plugins)
Example:
```
$ ln -s $PWD/viz.py ~/Library/Application\ Support/Binary\ Ninja/plugins/
```
## Usage
- Run manticore on a binary
- Open the binary in Binary Ninja
- `import` it from the Binary Ninja Script Console, and call desired functions
Example:
```
>>> import viz
>>> viz.viz(bv, '/mnt/hgfs/code/manticore/examples/linux/mcore_1vCAKM')
```