├── .gitignore ├── README.md └── Responders ├── Mailer ├── Mailer.json ├── README.md └── mailer.py ├── PowerAutomate ├── CreateTestAlert.py ├── PowerAutomate.json ├── PowerAutomate.py ├── README.md └── requirements.txt └── Reporter ├── README.md ├── Reporter.json ├── reporter.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | **/tmp 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/README.md -------------------------------------------------------------------------------- /Responders/Mailer/Mailer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/Responders/Mailer/Mailer.json -------------------------------------------------------------------------------- /Responders/Mailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/Responders/Mailer/README.md -------------------------------------------------------------------------------- /Responders/Mailer/mailer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/Responders/Mailer/mailer.py -------------------------------------------------------------------------------- /Responders/PowerAutomate/CreateTestAlert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/Responders/PowerAutomate/CreateTestAlert.py -------------------------------------------------------------------------------- /Responders/PowerAutomate/PowerAutomate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/Responders/PowerAutomate/PowerAutomate.json -------------------------------------------------------------------------------- /Responders/PowerAutomate/PowerAutomate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/Responders/PowerAutomate/PowerAutomate.py -------------------------------------------------------------------------------- /Responders/PowerAutomate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/Responders/PowerAutomate/README.md -------------------------------------------------------------------------------- /Responders/PowerAutomate/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | json 3 | thehive4py 4 | cortexutils -------------------------------------------------------------------------------- /Responders/Reporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/Responders/Reporter/README.md -------------------------------------------------------------------------------- /Responders/Reporter/Reporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/Responders/Reporter/Reporter.json -------------------------------------------------------------------------------- /Responders/Reporter/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aacgood/Cortex-Analyzers/HEAD/Responders/Reporter/reporter.py -------------------------------------------------------------------------------- /Responders/Reporter/requirements.txt: -------------------------------------------------------------------------------- 1 | mdutils 2 | thehive4py --------------------------------------------------------------------------------