├── .funcignore ├── .gitignore ├── INSTALL.md ├── README.md ├── doc ├── ExampleKQLandPlaybooks.md ├── SetupMicrosoftSentinel.md ├── [tlp-white] MISP to Microsoft Sentinel Whitepaper.pdf └── img │ └── SendAnEmailV2.png ├── host.json ├── m2s ├── RequestManager.py ├── RequestObject.py ├── __init__.py ├── config.py ├── constants.py ├── existing_indicators_hash.json └── function.json └── requirements.txt /.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test 5 | .venv -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/README.md -------------------------------------------------------------------------------- /doc/ExampleKQLandPlaybooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/doc/ExampleKQLandPlaybooks.md -------------------------------------------------------------------------------- /doc/SetupMicrosoftSentinel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/doc/SetupMicrosoftSentinel.md -------------------------------------------------------------------------------- /doc/[tlp-white] MISP to Microsoft Sentinel Whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/doc/[tlp-white] MISP to Microsoft Sentinel Whitepaper.pdf -------------------------------------------------------------------------------- /doc/img/SendAnEmailV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/doc/img/SendAnEmailV2.png -------------------------------------------------------------------------------- /host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/host.json -------------------------------------------------------------------------------- /m2s/RequestManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/m2s/RequestManager.py -------------------------------------------------------------------------------- /m2s/RequestObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/m2s/RequestObject.py -------------------------------------------------------------------------------- /m2s/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/m2s/__init__.py -------------------------------------------------------------------------------- /m2s/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/m2s/config.py -------------------------------------------------------------------------------- /m2s/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/m2s/constants.py -------------------------------------------------------------------------------- /m2s/existing_indicators_hash.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /m2s/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/m2s/function.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolderio/misp-to-sentinel/HEAD/requirements.txt --------------------------------------------------------------------------------