├── .github └── img │ ├── showcase-after.png │ ├── showcase-before.png │ ├── showcase.key │ └── showcase.png ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── blocks.py ├── objctypes.py ├── plugin.json └── shinobi.py /.github/img/showcase-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/.github/img/showcase-after.png -------------------------------------------------------------------------------- /.github/img/showcase-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/.github/img/showcase-before.png -------------------------------------------------------------------------------- /.github/img/showcase.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/.github/img/showcase.key -------------------------------------------------------------------------------- /.github/img/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/.github/img/showcase.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/__init__.py -------------------------------------------------------------------------------- /blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/blocks.py -------------------------------------------------------------------------------- /objctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/objctypes.py -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/plugin.json -------------------------------------------------------------------------------- /shinobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droe/binja-blocks/HEAD/shinobi.py --------------------------------------------------------------------------------