From bcdf164b4ca32c2c8448e46e9d81efb3fb069eaf Mon Sep 17 00:00:00 2001 From: frack113 Date: Mon, 27 Sep 2021 19:17:14 +0200 Subject: [PATCH] fix space --- tools/sigma/backends/sysmon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sigma/backends/sysmon.py b/tools/sigma/backends/sysmon.py index 852bd1739..3b592525b 100644 --- a/tools/sigma/backends/sysmon.py +++ b/tools/sigma/backends/sysmon.py @@ -217,7 +217,7 @@ class SysmonConfigBackend(SingleTextQueryBackend, MultiRuleOutputMixin): raise NotSupportedError( "Not supported logsource. Should be product `windows`.") for item in self.logsource.values(): - if str(item).lower() in self.allowedSource.keys(): + if str(item).lower() in self.allowedSource.keys(): self.table = self.allowedSource.get(item.lower()) break else: