-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathtest_correlations.py
517 lines (453 loc) · 15.8 KB
/
test_correlations.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
import pytest
from sigma.collection import SigmaCollection
from sigma.correlations import (
SigmaCorrelationCondition,
SigmaCorrelationConditionOperator,
SigmaCorrelationFieldAliases,
SigmaCorrelationRule,
SigmaCorrelationTimespan,
SigmaCorrelationType,
SigmaRuleReference,
)
from sigma.exceptions import (
SigmaCorrelationConditionError,
SigmaCorrelationRuleError,
SigmaCorrelationTypeError,
SigmaRuleNotFoundError,
SigmaTimespanError,
)
@pytest.fixture
def rule_collection():
return SigmaCollection.from_yaml(
"""
title: Failed login
name: failed_login
logsource:
product: windows
service: security
detection:
selection:
EventID: 4625
condition: selection
"""
)
@pytest.fixture
def correlation_rule():
return SigmaCorrelationRule.from_dict(
{
"title": "Valid correlation",
"correlation": {
"type": "event_count",
"rules": "failed_login",
"group-by": "user",
"timespan": "10m",
"condition": {"gte": 10},
},
}
)
def test_correlation_valid_1(correlation_rule):
rule = correlation_rule
assert isinstance(rule, SigmaCorrelationRule)
assert rule.title == "Valid correlation"
assert rule.type == SigmaCorrelationType.EVENT_COUNT
assert rule.rules == [SigmaRuleReference("failed_login")]
assert rule.generate == False
assert rule.group_by == ["user"]
assert rule.timespan == SigmaCorrelationTimespan("10m")
assert rule.condition == SigmaCorrelationCondition(
op=SigmaCorrelationConditionOperator.GTE, count=10
)
def test_correlation_valid_2():
rule = SigmaCorrelationRule.from_dict(
{
"title": "Valid correlation",
"correlation": {
"type": "temporal",
"rules": ["event_a", "event_b"],
"group-by": ["source", "user"],
"timespan": "1h",
"aliases": {
"source": {
"event_a": "source_ip",
"event_b": "source_address",
},
"user": {
"event_a": "username",
"event_b": "user_name",
},
},
},
}
)
assert isinstance(rule, SigmaCorrelationRule)
assert rule.title == "Valid correlation"
assert rule.type == SigmaCorrelationType.TEMPORAL
assert rule.rules == [
SigmaRuleReference("event_a"),
SigmaRuleReference("event_b"),
]
assert rule.group_by == ["source", "user"]
assert rule.timespan == SigmaCorrelationTimespan("1h")
assert rule.condition == SigmaCorrelationCondition(SigmaCorrelationConditionOperator.GTE, 2)
assert len(rule.aliases.aliases) == 2
assert rule.aliases.aliases["source"].mapping == {
SigmaRuleReference("event_a"): "source_ip",
SigmaRuleReference("event_b"): "source_address",
}
assert rule.aliases.aliases["user"].mapping == {
SigmaRuleReference("event_a"): "username",
SigmaRuleReference("event_b"): "user_name",
}
def test_correlation_valid_1_from_yaml():
rule = SigmaCorrelationRule.from_yaml(
"""
title: Valid correlation
correlation:
type: event_count
rules: failed_login
group-by: user
timespan: 10m
condition:
gte: 10
"""
)
assert isinstance(rule, SigmaCorrelationRule)
assert rule.title == "Valid correlation"
assert rule.type == SigmaCorrelationType.EVENT_COUNT
assert rule.rules == [SigmaRuleReference("failed_login")]
assert rule.group_by == ["user"]
assert rule.timespan == SigmaCorrelationTimespan("10m")
assert rule.condition == SigmaCorrelationCondition(
op=SigmaCorrelationConditionOperator.GTE, count=10
)
def test_correlation_valid_2_from_yaml():
rule = SigmaCorrelationRule.from_yaml(
"""
title: Valid correlation
correlation:
type: temporal
rules:
- event_a
- event_b
group-by:
- source
- user
aliases:
source:
event_a: source_ip
event_b: source_address
user:
event_a: username
event_b: user_name
timespan: 1h
"""
)
assert isinstance(rule, SigmaCorrelationRule)
assert rule.title == "Valid correlation"
assert rule.type == SigmaCorrelationType.TEMPORAL
assert rule.rules == [SigmaRuleReference("event_a"), SigmaRuleReference("event_b")]
assert rule.group_by == ["source", "user"]
assert rule.timespan == SigmaCorrelationTimespan("1h")
assert rule.condition == SigmaCorrelationCondition(SigmaCorrelationConditionOperator.GTE, 2)
assert len(rule.aliases.aliases) == 2
assert rule.aliases.aliases["source"].mapping == {
SigmaRuleReference("event_a"): "source_ip",
SigmaRuleReference("event_b"): "source_address",
}
assert rule.aliases.aliases["user"].mapping == {
SigmaRuleReference("event_a"): "username",
SigmaRuleReference("event_b"): "user_name",
}
def test_correlation_wrong_type():
with pytest.raises(
SigmaCorrelationTypeError, match="'test' is no valid Sigma correlation type"
):
SigmaCorrelationRule.from_dict(
{
"title": "Invalid correlation type",
"correlation": {
"type": "test",
"rules": "failed_login",
"group-by": ["user"],
"timespan": "10m",
"condition": {"gte": 10},
},
}
)
def test_correlation_without_type():
with pytest.raises(SigmaCorrelationTypeError, match="Sigma correlation rule without type"):
SigmaCorrelationRule.from_dict(
{
"title": "Invalid correlation type",
"correlation": {
"rules": "failed_login",
"group-by": ["user"],
"timespan": "10m",
"condition": {"gte": 10},
},
}
)
def test_correlation_invalid_rule_reference():
with pytest.raises(
SigmaCorrelationRuleError, match="Rule reference must be plain string or list."
):
SigmaCorrelationRule.from_dict(
{
"title": "Invalid rule reference",
"correlation": {
"type": "event_count",
"rules": {"test": "test"},
"group-by": ["user"],
"timespan": "10m",
"condition": {"gte": 10},
},
}
)
def test_correlation_without_rule_reference():
with pytest.raises(
SigmaCorrelationRuleError, match="Sigma correlation rule without rule references"
):
SigmaCorrelationRule.from_dict(
{
"title": "Invalid rule reference",
"correlation": {
"type": "event_count",
"group-by": ["user"],
"timespan": "10m",
"condition": {"gte": 10},
},
}
)
def test_correlation_invalid_group_by():
with pytest.raises(
SigmaCorrelationRuleError,
match="Sigma correlation group-by definition must be string or list",
):
SigmaCorrelationRule.from_dict(
{
"title": "Invalid group-by",
"correlation": {
"type": "event_count",
"rules": "failed_login",
"group-by": {"test": "test"},
"timespan": "10m",
"condition": {"gte": 10},
},
}
)
def test_correlation_invalid_timespan():
with pytest.raises(SigmaTimespanError, match="Timespan '10' is invalid."):
SigmaCorrelationRule.from_dict(
{
"title": "Invalid time span",
"correlation": {
"type": "event_count",
"rules": "failed_login",
"group-by": ["user"],
"timespan": "10",
"condition": {"gte": 10},
},
}
)
def test_correlation_timespan():
timespan = SigmaCorrelationTimespan("10m")
assert isinstance(timespan, SigmaCorrelationTimespan)
assert timespan.count == 10
assert timespan.unit == "m"
assert timespan.seconds == 600
def test_correlation_without_timespan():
with pytest.raises(SigmaCorrelationRuleError, match="Sigma correlation rule without timespan"):
SigmaCorrelationRule.from_dict(
{
"title": "Invalid time span",
"correlation": {
"type": "event_count",
"rules": "failed_login",
"group-by": ["user"],
"condition": {"gte": 10},
},
}
)
def test_correlation_invalid_condition():
with pytest.raises(
SigmaCorrelationRuleError, match="Sigma correlation condition definition must be a dict"
):
SigmaCorrelationRule.from_dict(
{
"title": "Invalid condition",
"correlation": {
"type": "event_count",
"rules": "failed_login",
"group-by": ["user"],
"timespan": "10m",
"condition": "test",
},
}
)
def test_correlation_without_condition():
with pytest.raises(SigmaCorrelationRuleError, match="Sigma correlation rule without condition"):
SigmaCorrelationRule.from_dict(
{
"title": "Invalid condition",
"correlation": {
"type": "event_count",
"rules": "failed_login",
"group-by": ["user"],
"timespan": "10m",
},
}
)
def test_correlation_without_condition_post_init_check():
with pytest.raises(SigmaCorrelationRuleError, match="Sigma correlation rule without condition"):
SigmaCorrelationRule(
type=SigmaCorrelationType.EVENT_COUNT,
rules=[SigmaRuleReference("failed_login")],
timespan=600,
group_by=["user"],
condition=None,
)
def test_value_count_correlation_without_condition_field():
with pytest.raises(
SigmaCorrelationRuleError, match="Value count correlation rule without field reference"
):
SigmaCorrelationRule.from_dict(
{
"title": "Missing field in condition",
"correlation": {
"type": "value_count",
"rules": "failed_login",
"group-by": ["user"],
"timespan": "10m",
"condition": {"gte": 10},
},
}
)
def test_correlation_to_dict():
rule = SigmaCorrelationRule.from_dict(
{
"title": "Valid correlation",
"correlation": {
"type": "event_count",
"rules": "failed_login",
"group-by": "user",
"timespan": "10m",
"aliases": {"user": {"failed_login": "username"}},
"condition": {"gte": 10},
},
}
)
assert rule.to_dict() == {
"title": "Valid correlation",
"correlation": {
"type": "event_count",
"rules": ["failed_login"],
"group-by": ["user"],
"timespan": "10m",
"aliases": {"user": {"failed_login": "username"}},
"condition": {"gte": 10},
},
}
def test_correlation_invalid_alias():
with pytest.raises(
SigmaCorrelationRuleError, match="Sigma correlation aliases definition must be a dict"
):
SigmaCorrelationRule.from_dict(
{
"title": "Invalid alias",
"correlation": {
"type": "event_count",
"rules": "failed_login",
"group-by": ["user"],
"timespan": "10m",
"aliases": "test",
"condition": {"gte": 10},
},
}
)
def test_correlation_alias_invalid_mapping():
with pytest.raises(
SigmaCorrelationRuleError, match="Sigma correlation field alias mapping must be a dict"
):
SigmaCorrelationFieldAliases.from_dict(
{"test": "test"},
)
def test_correlation_condition():
cond = SigmaCorrelationCondition.from_dict({"gte": 10})
assert isinstance(cond, SigmaCorrelationCondition)
assert cond.op == SigmaCorrelationConditionOperator.GTE
assert cond.count == 10
def test_correlation_condition_with_field():
cond = SigmaCorrelationCondition.from_dict({"field": "test", "gte": 10})
assert isinstance(cond, SigmaCorrelationCondition)
assert cond.op == SigmaCorrelationConditionOperator.GTE
assert cond.count == 10
assert cond.fieldref == "test"
def test_correlation_condition_with_field_to_dict():
assert SigmaCorrelationCondition(
op=SigmaCorrelationConditionOperator.GTE, count=10, fieldref="test"
).to_dict() == {"field": "test", "gte": 10}
def test_correlation_condition_invalid_multicond():
with pytest.raises(
SigmaCorrelationConditionError,
match="Sigma correlation condition must have exactly one condition item",
):
SigmaCorrelationCondition.from_dict({"gte": 10, "lte": 20})
def test_correlation_condition_invalid_item():
with pytest.raises(
SigmaCorrelationConditionError,
match="Sigma correlation condition contains invalid items: test.*",
):
SigmaCorrelationCondition.from_dict({"gte": 10, "test1": 20, "test2": 30})
def test_correlation_condition_invalid_count():
with pytest.raises(
SigmaCorrelationConditionError,
match="'test' is no valid Sigma correlation condition count",
):
SigmaCorrelationCondition.from_dict({"gte": "test"})
def test_correlation_condition_to_dict():
cond = SigmaCorrelationCondition.from_dict({"gte": 10})
assert cond.to_dict() == {"gte": 10}
def test_correlation_resolve_rule_references(rule_collection, correlation_rule):
correlation_rule.resolve_rule_references(rule_collection)
rule = rule_collection["failed_login"]
assert correlation_rule.rules[0].rule == rule
assert rule.referenced_by(correlation_rule)
def test_correlation_resolve_rule_references_invalid_reference(correlation_rule):
with pytest.raises(
SigmaRuleNotFoundError, match="Rule 'failed_login' not found in rule collection"
):
correlation_rule.resolve_rule_references(SigmaCollection([]))
def test_correlation_rule_generate():
assert (
SigmaCorrelationRule.from_dict(
{
"title": "Valid correlation",
"correlation": {
"type": "event_count",
"rules": "failed_login",
"generate": True,
"group-by": "user",
"timespan": "10m",
"condition": {"gte": 10},
},
}
).generate
== True
)
def test_correlation_invalid_generate():
with pytest.raises(
SigmaCorrelationRuleError, match="Sigma correlation generate definition must be a boolean"
):
SigmaCorrelationRule.from_dict(
{
"title": "Valid correlation",
"correlation": {
"type": "event_count",
"rules": "failed_login",
"generate": "test",
"group-by": "user",
"timespan": "10m",
"condition": {"gte": 10},
},
}
)