├── .gitignore ├── LICENSE ├── README.md ├── amsiscan.py ├── avred_server.py ├── config.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dobin/avred-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dobin/avred-server/HEAD/README.md -------------------------------------------------------------------------------- /amsiscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dobin/avred-server/HEAD/amsiscan.py -------------------------------------------------------------------------------- /avred_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dobin/avred-server/HEAD/avred_server.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dobin/avred-server/HEAD/config.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | PythonForWindows 3 | brotli --------------------------------------------------------------------------------