├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── poetry.lock ├── print-coverage.py ├── pyproject.toml ├── sigma ├── backends │ └── insight_idr │ │ ├── __init__.py │ │ └── insight_idr.py └── pipelines │ └── insight_idr │ ├── __init__.py │ └── insight_idr.py └── tests ├── test_backend_insight_idr.py └── test_insight_idr_pipeline.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .coverage* 2 | .vscode/ 3 | **/__pycache__ 4 | cov.xml 5 | dist/ 6 | docs/_build 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/poetry.lock -------------------------------------------------------------------------------- /print-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/print-coverage.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sigma/backends/insight_idr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/sigma/backends/insight_idr/__init__.py -------------------------------------------------------------------------------- /sigma/backends/insight_idr/insight_idr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/sigma/backends/insight_idr/insight_idr.py -------------------------------------------------------------------------------- /sigma/pipelines/insight_idr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/sigma/pipelines/insight_idr/__init__.py -------------------------------------------------------------------------------- /sigma/pipelines/insight_idr/insight_idr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/sigma/pipelines/insight_idr/insight_idr.py -------------------------------------------------------------------------------- /tests/test_backend_insight_idr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/tests/test_backend_insight_idr.py -------------------------------------------------------------------------------- /tests/test_insight_idr_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SigmaHQ/pySigma-backend-insightidr/HEAD/tests/test_insight_idr_pipeline.py --------------------------------------------------------------------------------