Skip to content

Commit d103c40

Browse files
committed
Updates dependencies and added new pipelines
1 parent ab20387 commit d103c40

3 files changed

Lines changed: 64 additions & 61 deletions

File tree

poetry.lock

Lines changed: 59 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sigma-cli"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
description = ""
55
authors = ["Thomas Patzke <thomas@patzke.org>"]
66
license = "LGPL-2.1-or-later"
@@ -23,7 +23,7 @@ packages = [
2323
python = "^3.8"
2424
click = "^8.0.3"
2525
pysigma = "^0.4.0"
26-
pysigma-backend-splunk = "^0.1.1"
26+
pysigma-backend-splunk = "^0.2.0"
2727
pysigma-pipeline-sysmon = "^0.1.0"
2828
pysigma-pipeline-crowdstrike = "^0.1.0"
2929
prettytable = "^3.1.1"

sigma/cli/pipelines.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
from sigma.pipelines.sysmon import sysmon_pipeline
22
from sigma.pipelines.crowdstrike import crowdstrike_fdr_pipeline
3+
from sigma.pipelines.splunk import splunk_windows_pipeline, splunk_windows_sysmon_acceleration_keywords
34
from sigma.processing.resolver import ProcessingPipelineResolver
45

56
pipelines = ProcessingPipelineResolver({
67
"sysmon": sysmon_pipeline,
78
"crowdstrike_fdr": crowdstrike_fdr_pipeline,
9+
"splunk_windows": splunk_windows_pipeline,
10+
"splunk_sysmon_acceleration": splunk_windows_sysmon_acceleration_keywords,
811
})

0 commit comments

Comments
 (0)