Skip to content

Commit

Permalink
Fixed condition imports
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspatzke committed Oct 28, 2024
1 parent 7fc9a39 commit c610069
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions sigma/processing/conditions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,35 @@
from sigma.processing.conditions.base import (
ProcessingCondition,
DetectionItemProcessingCondition,
FieldNameProcessingCondition,
RuleProcessingCondition,
)
from typing import Dict

from sigma.processing.conditions.fields import ExcludeFieldCondition, IncludeFieldCondition
from sigma.processing.conditions.rule import (
IsSigmaCorrelationRuleCondition,
IsSigmaRuleCondition,
LogsourceCondition,
RuleAttributeCondition,
RuleContainsDetectionItemCondition,
RuleContainsFieldCondition,
RuleTagCondition,
)
from sigma.processing.conditions.state import (
DetectionItemProcessingItemAppliedCondition,
DetectionItemProcessingStateCondition,
FieldNameProcessingItemAppliedCondition,
FieldNameProcessingStateCondition,
RuleProcessingItemAppliedCondition,
RuleProcessingStateCondition,
)
from sigma.processing.conditions.values import (
ContainsWildcardCondition,
IsNullCondition,
MatchStringCondition,
)


rule_conditions: Dict[str, RuleProcessingCondition] = {
"logsource": LogsourceCondition,
Expand Down

0 comments on commit c610069

Please sign in to comment.