├── .gitignore ├── CHANGELOG.md ├── LICENSE-2.0.txt ├── README.md ├── api_client.py ├── config.ini.sample ├── config.py ├── docker_samples ├── Dockerfile └── docker-compose.yml ├── logging_config.py ├── name_mapping.py ├── siem.py ├── state.py ├── test_regression.py ├── tests ├── __init__.py └── unit │ ├── __init__.py │ ├── test_api_client.py │ ├── test_config.py │ ├── test_name_mapping.py │ ├── test_siem.py │ └── test_state.py └── vercheck.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/LICENSE-2.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/README.md -------------------------------------------------------------------------------- /api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/api_client.py -------------------------------------------------------------------------------- /config.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/config.ini.sample -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/config.py -------------------------------------------------------------------------------- /docker_samples/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/docker_samples/Dockerfile -------------------------------------------------------------------------------- /docker_samples/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/docker_samples/docker-compose.yml -------------------------------------------------------------------------------- /logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/logging_config.py -------------------------------------------------------------------------------- /name_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/name_mapping.py -------------------------------------------------------------------------------- /siem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/siem.py -------------------------------------------------------------------------------- /state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/state.py -------------------------------------------------------------------------------- /test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/test_regression.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/tests/unit/test_api_client.py -------------------------------------------------------------------------------- /tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/tests/unit/test_config.py -------------------------------------------------------------------------------- /tests/unit/test_name_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/tests/unit/test_name_mapping.py -------------------------------------------------------------------------------- /tests/unit/test_siem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/tests/unit/test_siem.py -------------------------------------------------------------------------------- /tests/unit/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/tests/unit/test_state.py -------------------------------------------------------------------------------- /vercheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophos/Sophos-Central-SIEM-Integration/HEAD/vercheck.py --------------------------------------------------------------------------------