├── .editorconfig ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── __init__.py ├── constants.py ├── helpers.py ├── plugin.json ├── requirements.txt └── server.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/binja-headless/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .env 3 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/binja-headless/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/binja-headless/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/binja-headless/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/binja-headless/HEAD/__init__.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/binja-headless/HEAD/constants.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/binja-headless/HEAD/helpers.py -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/binja-headless/HEAD/plugin.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rpyc>=6.0.0 2 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/binja-headless/HEAD/server.py --------------------------------------------------------------------------------