hunt-correlate 0.2.3

Correlation rules, watch mode, and IOC matching for clawdstrike hunt
Documentation
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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
//! Correlation engine — evaluates correlation rules against event streams using sliding windows.

use std::collections::HashMap;

use chrono::{DateTime, Utc};
use regex::Regex;
use serde::Serialize;

use crate::error::{Error, Result};
use crate::rules::{CorrelationRule, RuleCondition, RuleSeverity};
use hunt_query::timeline::{NormalizedVerdict, TimelineEvent};

/// An alert generated when a correlation rule fires.
#[derive(Debug, Clone, Serialize)]
pub struct Alert {
    /// Rule name that generated this alert.
    pub rule_name: String,
    /// Severity level.
    pub severity: RuleSeverity,
    /// Alert title from rule output.
    pub title: String,
    /// When the alert was triggered (timestamp of the final matching event).
    pub triggered_at: DateTime<Utc>,
    /// Evidence: the timeline events that contributed to this alert.
    pub evidence: Vec<TimelineEvent>,
    /// Alert description from rule.
    pub description: String,
}

/// Tracks in-flight event bindings for a single detection sequence of a rule.
#[derive(Debug, Clone)]
struct WindowState {
    /// Events bound by condition bind name.
    bound_events: HashMap<String, Vec<TimelineEvent>>,
    /// Timestamp of the first bound event (window start).
    window_start: DateTime<Utc>,
}

/// Pre-compiled regex pair for a single condition.
#[derive(Debug, Clone)]
struct CompiledPatterns {
    target: Option<Regex>,
    not_target: Option<Regex>,
}

/// The correlation engine evaluates events against loaded rules using sliding windows.
#[derive(Debug)]
pub struct CorrelationEngine {
    /// Parsed rules.
    rules: Vec<CorrelationRule>,
    /// Pre-compiled regex patterns, keyed by (rule index, condition index).
    patterns: HashMap<(usize, usize), CompiledPatterns>,
    /// In-flight window states: keyed by rule index, each rule can have multiple concurrent windows.
    windows: HashMap<usize, Vec<WindowState>>,
}

impl CorrelationEngine {
    /// Create a new correlation engine, pre-compiling all regex patterns.
    pub fn new(rules: Vec<CorrelationRule>) -> Result<Self> {
        let mut patterns = HashMap::new();

        for (ri, rule) in rules.iter().enumerate() {
            for (ci, cond) in rule.conditions.iter().enumerate() {
                let target = match &cond.target_pattern {
                    Some(pat) => Some(Regex::new(pat).map_err(|e| {
                        Error::Regex(format!("rule '{}' condition {ci}: {e}", rule.name))
                    })?),
                    None => None,
                };
                let not_target = match &cond.not_target_pattern {
                    Some(pat) => Some(Regex::new(pat).map_err(|e| {
                        Error::Regex(format!(
                            "rule '{}' condition {ci} not_target: {e}",
                            rule.name
                        ))
                    })?),
                    None => None,
                };
                patterns.insert((ri, ci), CompiledPatterns { target, not_target });
            }
        }

        Ok(Self {
            rules,
            patterns,
            windows: HashMap::new(),
        })
    }

    /// Process a single event against all loaded rules.
    /// Evicts expired windows first, then evaluates conditions.
    /// Returns any alerts that were generated.
    pub fn process_event(&mut self, event: &TimelineEvent) -> Vec<Alert> {
        self.evict_expired_at(event.timestamp);

        let mut alerts = Vec::new();

        for ri in 0..self.rules.len() {
            let rule_alerts = self.evaluate_rule(ri, event);
            alerts.extend(rule_alerts);
        }

        alerts
    }

    /// Remove window states that have exceeded their rule's window duration,
    /// using the given reference time (typically the current event's timestamp).
    pub fn evict_expired_at(&mut self, now: DateTime<Utc>) {
        for (ri, windows) in &mut self.windows {
            let window_dur = self.rules[*ri].window;
            windows.retain(|ws| {
                let elapsed = now.signed_duration_since(ws.window_start);
                elapsed <= window_dur
            });
        }

        // Remove empty entries.
        self.windows.retain(|_, v| !v.is_empty());
    }

    /// Remove window states that have exceeded their rule's window duration
    /// using wall-clock time.
    pub fn evict_expired(&mut self) {
        self.evict_expired_at(Utc::now());
    }

    /// Remove window states that have exceeded the shorter of the rule's own
    /// window duration and the provided `max_window` cap, using wall-clock time.
    pub fn evict_expired_capped(&mut self, max_window: chrono::Duration) {
        let now = Utc::now();
        for (ri, windows) in &mut self.windows {
            let rule_dur = self.rules[*ri].window;
            let effective = if max_window < rule_dur {
                max_window
            } else {
                rule_dur
            };
            windows.retain(|ws| {
                let elapsed = now.signed_duration_since(ws.window_start);
                elapsed <= effective
            });
        }
        self.windows.retain(|_, v| !v.is_empty());
    }

    /// Return a reference to the loaded rules.
    pub fn rules(&self) -> &[CorrelationRule] {
        &self.rules
    }

    /// Flush all windows and return alerts for any fully-matched sequences.
    pub fn flush(&mut self) -> Vec<Alert> {
        self.evict_expired();

        let mut alerts = Vec::new();

        for (ri, windows) in self.windows.drain() {
            let rule = &self.rules[ri];
            for ws in windows {
                if all_conditions_met(rule, &ws) {
                    alerts.push(build_alert(rule, &ws));
                }
            }
        }

        alerts
    }

    /// Evaluate a single rule against an event. May create new windows or advance existing ones.
    fn evaluate_rule(&mut self, ri: usize, event: &TimelineEvent) -> Vec<Alert> {
        let mut alerts = Vec::new();
        let rule = &self.rules[ri];

        // Snapshot the number of windows that existed before processing this event.
        // Dependent conditions (`after` is Some) must only iterate windows that
        // existed before this event was processed, preventing a single event from
        // binding to both a newly-created root window and its dependent condition.
        let pre_existing_count = self.windows.get(&ri).map_or(0, |w| w.len());
        // Track whether this event already advanced each pre-existing window
        // through a dependent condition in this pass.
        let mut dependent_advanced = vec![false; pre_existing_count];

        // Check each condition to see if this event matches it.
        for (ci, cond) in rule.conditions.iter().enumerate() {
            let cp = match self.patterns.get(&(ri, ci)) {
                Some(cp) => cp,
                None => continue,
            };

            if !condition_matches(cond, cp, event) {
                continue;
            }

            if cond.after.is_none() {
                // This is a root condition (no dependency). Start a new window.
                let mut bound = HashMap::new();
                bound.insert(cond.bind.clone(), vec![event.clone()]);
                let ws = WindowState {
                    bound_events: bound,
                    window_start: event.timestamp,
                };

                self.windows.entry(ri).or_default().push(ws);
            } else {
                // This condition depends on a prior bind. Try to advance existing windows.
                let after_bind = cond.after.as_deref();

                if pre_existing_count == 0 {
                    continue;
                }

                let windows = match self.windows.get_mut(&ri) {
                    Some(w) => w,
                    None => continue,
                };

                for (wi, ws) in windows.iter_mut().take(pre_existing_count).enumerate() {
                    // A single event may advance at most one dependent bind per window.
                    if dependent_advanced.get(wi).copied().unwrap_or(false) {
                        continue;
                    }

                    // Skip windows that already have this bind matched.
                    if ws.bound_events.contains_key(&cond.bind) {
                        continue;
                    }

                    // Check that the `after` bind exists in this window.
                    let after_ok = match after_bind {
                        Some(ab) => ws.bound_events.contains_key(ab),
                        None => true,
                    };
                    if !after_ok {
                        continue;
                    }

                    // Dependent events must never be earlier than the latest
                    // prerequisite event, even when `within` is not set.
                    if let Some(ab) = after_bind {
                        if let Some(after_events) = ws.bound_events.get(ab) {
                            if let Some(latest_after) =
                                after_events.iter().map(|e| e.timestamp).max()
                            {
                                let elapsed = event.timestamp.signed_duration_since(latest_after);
                                if elapsed < chrono::Duration::zero() {
                                    continue;
                                }
                                if let Some(within_dur) = cond.within {
                                    if elapsed > within_dur {
                                        continue;
                                    }
                                }
                            }
                        }
                    }

                    // Bind this event.
                    ws.bound_events
                        .entry(cond.bind.clone())
                        .or_default()
                        .push(event.clone());
                    if let Some(slot) = dependent_advanced.get_mut(wi) {
                        *slot = true;
                    }
                }
            }
        }

        // Check if any windows for this rule are now fully matched.
        if let Some(windows) = self.windows.get_mut(&ri) {
            let rule = &self.rules[ri];
            let mut completed_indices = Vec::new();

            for (wi, ws) in windows.iter().enumerate() {
                if all_conditions_met(rule, ws) {
                    alerts.push(build_alert(rule, ws));
                    completed_indices.push(wi);
                }
            }

            // Remove completed windows in reverse order to preserve indices.
            for wi in completed_indices.into_iter().rev() {
                windows.remove(wi);
            }
        }

        alerts
    }
}

/// Check if all conditions in a rule have at least one bound event.
fn all_conditions_met(rule: &CorrelationRule, ws: &WindowState) -> bool {
    rule.conditions
        .iter()
        .all(|cond| ws.bound_events.contains_key(&cond.bind))
}

/// Check if a single condition matches a timeline event.
fn condition_matches(
    cond: &RuleCondition,
    compiled: &CompiledPatterns,
    event: &TimelineEvent,
) -> bool {
    // Source check: condition.source must contain event.source (case-insensitive).
    let event_source_str = event.source.to_string().to_lowercase();
    let source_ok = cond
        .source
        .iter()
        .any(|s| s.to_lowercase() == event_source_str);
    if !source_ok {
        return false;
    }

    // Action type check (case-insensitive).
    if let Some(ref at) = cond.action_type {
        match &event.action_type {
            Some(eat) => {
                if !eat.eq_ignore_ascii_case(at) {
                    return false;
                }
            }
            None => return false,
        }
    }

    // Verdict check.
    if let Some(ref v) = cond.verdict {
        let expected = match v.to_lowercase().as_str() {
            "allow" => NormalizedVerdict::Allow,
            "deny" => NormalizedVerdict::Deny,
            "warn" => NormalizedVerdict::Warn,
            "forwarded" => NormalizedVerdict::Forwarded,
            "dropped" => NormalizedVerdict::Dropped,
            "none" => NormalizedVerdict::None,
            _ => return false,
        };
        if event.verdict != expected {
            return false;
        }
    }

    // Target pattern: regex must match event.summary.
    if let Some(ref re) = compiled.target {
        if !re.is_match(&event.summary) {
            return false;
        }
    }

    // Not-target pattern: regex must NOT match event.summary.
    if let Some(ref re) = compiled.not_target {
        if re.is_match(&event.summary) {
            return false;
        }
    }

    true
}

/// Build an alert from a completed window state.
fn build_alert(rule: &CorrelationRule, ws: &WindowState) -> Alert {
    // Collect evidence events in the order specified by output.evidence.
    let mut evidence = Vec::new();
    for bind_name in &rule.output.evidence {
        if let Some(events) = ws.bound_events.get(bind_name) {
            evidence.extend(events.iter().cloned());
        }
    }

    // Triggered at = timestamp of the latest evidence event.
    let triggered_at = evidence
        .iter()
        .map(|e| e.timestamp)
        .max()
        .unwrap_or_else(Utc::now);

    Alert {
        rule_name: rule.name.clone(),
        severity: rule.severity,
        title: rule.output.title.clone(),
        triggered_at,
        evidence,
        description: rule.description.clone(),
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::rules::parse_rule;
    use chrono::TimeZone;
    use hunt_query::query::EventSource;
    use hunt_query::timeline::{NormalizedVerdict, TimelineEvent, TimelineEventKind};

    fn make_event(
        source: EventSource,
        action_type: &str,
        verdict: NormalizedVerdict,
        summary: &str,
        ts: DateTime<Utc>,
    ) -> TimelineEvent {
        TimelineEvent {
            timestamp: ts,
            source,
            kind: TimelineEventKind::GuardDecision,
            verdict,
            severity: None,
            summary: summary.to_string(),
            process: None,
            namespace: None,
            pod: None,
            action_type: Some(action_type.to_string()),
            signature_valid: None,
            raw: None,
        }
    }

    fn exfil_rule() -> CorrelationRule {
        parse_rule(
            r#"
schema: clawdstrike.hunt.correlation.v1
name: "MCP Tool Exfiltration Attempt"
severity: high
description: >
  Detects an MCP tool reading sensitive files followed by
  network egress to an external domain within 30 seconds.
window: 30s
conditions:
  - source: receipt
    action_type: file
    verdict: allow
    target_pattern: "/etc/passwd|/etc/shadow|\\.ssh/|\\.(env|pem|key)$"
    bind: file_access
  - source: [receipt, hubble]
    action_type: egress
    not_target_pattern: "->\\s*(localhost|127\\.(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])|10\\.(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])|172\\.(1[6-9]|2[0-9]|3[01])\\.(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])|192\\.168\\.(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))(?::[0-9]{1,5})?(?:$|[^A-Za-z0-9.:-])"
    after: file_access
    within: 30s
    bind: egress_event
output:
  title: "Potential data exfiltration via MCP tool"
  evidence:
    - file_access
    - egress_event
"#,
        )
        .unwrap()
    }

    fn single_condition_rule() -> CorrelationRule {
        parse_rule(
            r#"
schema: clawdstrike.hunt.correlation.v1
name: "Forbidden Path Access"
severity: critical
description: "Detects any denied file access"
window: 5m
conditions:
  - source: receipt
    action_type: file
    verdict: deny
    bind: denied_access
output:
  title: "File access denied"
  evidence:
    - denied_access
"#,
        )
        .unwrap()
    }

    #[test]
    fn engine_new_compiles_regex() {
        let rule = exfil_rule();
        let engine = CorrelationEngine::new(vec![rule]).unwrap();
        assert_eq!(engine.rules().len(), 1);
    }

    #[test]
    fn engine_new_rejects_bad_regex() {
        let mut rule = exfil_rule();
        rule.conditions[0].target_pattern = Some("[invalid".to_string());
        let result = CorrelationEngine::new(vec![rule]);
        assert!(result.is_err());
        let msg = result.unwrap_err().to_string();
        assert!(msg.contains("regex"), "got: {msg}");
    }

    #[test]
    fn single_condition_rule_fires_immediately() {
        let rule = single_condition_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let event = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Deny,
            "/etc/passwd",
            ts,
        );

        let alerts = engine.process_event(&event);
        assert_eq!(alerts.len(), 1);
        assert_eq!(alerts[0].rule_name, "Forbidden Path Access");
        assert_eq!(alerts[0].severity, RuleSeverity::Critical);
        assert_eq!(alerts[0].evidence.len(), 1);
    }

    #[test]
    fn two_condition_sequence_generates_alert() {
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 10).unwrap();

        // First event: file access to sensitive path
        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts1,
        );
        let alerts = engine.process_event(&e1);
        assert!(
            alerts.is_empty(),
            "should not alert on first condition only"
        );

        // Second event: egress to external domain
        let e2 = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "egress TCP 10.0.0.1:8080 -> 93.184.216.34:443",
            ts2,
        );
        let alerts = engine.process_event(&e2);
        assert_eq!(alerts.len(), 1);
        assert_eq!(alerts[0].title, "Potential data exfiltration via MCP tool");
        assert_eq!(alerts[0].evidence.len(), 2);
    }

    #[test]
    fn egress_to_internal_excluded_by_not_target() {
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 10).unwrap();

        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts1,
        );
        engine.process_event(&e1);

        // Egress to internal IP — should be excluded by not_target_pattern
        let e2 = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "egress TCP 10.0.0.1:8080 -> 192.168.1.1:8080",
            ts2,
        );
        let alerts = engine.process_event(&e2);
        assert!(
            alerts.is_empty(),
            "internal egress should not trigger alert"
        );
    }

    #[test]
    fn egress_to_localhost_subdomain_still_alerts() {
        // localhost.evil.com must not be treated as plain localhost.
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 10).unwrap();

        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts1,
        );
        engine.process_event(&e1);

        let e2 = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "egress TCP 10.0.0.1:8080 -> localhost.evil.com:443",
            ts2,
        );
        let alerts = engine.process_event(&e2);
        assert_eq!(
            alerts.len(),
            1,
            "localhost subdomains are external and should not be excluded"
        );
    }

    #[test]
    fn egress_to_172_20_range_excluded_as_private() {
        // 172.20.x.x is RFC 1918 private (172.16.0.0/12) and must be excluded.
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 10).unwrap();

        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts1,
        );
        engine.process_event(&e1);

        // 172.25.0.1 is private — should NOT trigger alert
        let e2 = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "egress TCP 10.0.0.1:8080 -> 172.25.0.1:8080",
            ts2,
        );
        let alerts = engine.process_event(&e2);
        assert!(
            alerts.is_empty(),
            "172.25.x.x is RFC 1918 private and should be excluded"
        );
    }

    #[test]
    fn egress_to_172_2_not_excluded_as_public() {
        // 172.2.x.x is NOT RFC 1918 private — it should trigger an alert.
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 10).unwrap();

        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts1,
        );
        engine.process_event(&e1);

        // 172.2.0.1 is public — SHOULD trigger alert
        let e2 = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "egress TCP 10.0.0.1:8080 -> 172.2.0.1:8080",
            ts2,
        );
        let alerts = engine.process_event(&e2);
        assert_eq!(
            alerts.len(),
            1,
            "172.2.x.x is a public IP and should trigger exfiltration alert"
        );
    }

    #[test]
    fn egress_to_100_not_excluded_as_public() {
        // 100.x.x.x is public and must not be excluded by a 10.x prefix.
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 10).unwrap();

        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts1,
        );
        engine.process_event(&e1);

        let e2 = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "egress TCP 10.0.0.1:8080 -> 100.1.2.3:8080",
            ts2,
        );
        let alerts = engine.process_event(&e2);
        assert_eq!(
            alerts.len(),
            1,
            "100.x.x.x is a public IP and should trigger exfiltration alert"
        );
    }

    #[test]
    fn egress_without_direction_prefix_private_source_public_dest_still_alerts() {
        // Some summaries may omit the direction prefix and start with source IP.
        // The not_target_pattern must not exclude based on private source.
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 10).unwrap();

        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts1,
        );
        engine.process_event(&e1);

        let e2 = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "10.0.0.1 -> 93.184.216.34:443",
            ts2,
        );
        let alerts = engine.process_event(&e2);
        assert_eq!(
            alerts.len(),
            1,
            "private source at summary start must not suppress external destination alerts"
        );
    }

    #[test]
    fn within_constraint_rejects_late_event() {
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        // 31 seconds later — exceeds 30s within constraint
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 31).unwrap();

        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /home/user/.ssh/id_rsa",
            ts1,
        );
        engine.process_event(&e1);

        let e2 = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "evil.com:443",
            ts2,
        );
        let alerts = engine.process_event(&e2);
        assert!(
            alerts.is_empty(),
            "event outside within window should not trigger"
        );
    }

    #[test]
    fn after_without_within_rejects_out_of_order_event() {
        let rule = parse_rule(
            r#"
schema: clawdstrike.hunt.correlation.v1
name: "Ordered Dependent Sequence"
severity: medium
description: "Dependent events must occur after their prerequisite"
window: 5m
conditions:
  - source: receipt
    action_type: file
    bind: first
  - source: receipt
    action_type: egress
    after: first
    bind: second
output:
  title: "Ordered sequence matched"
  evidence:
    - first
    - second
"#,
        )
        .unwrap();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts_first = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 10).unwrap();
        let ts_older = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 5).unwrap();
        let ts_newer = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 20).unwrap();

        let first = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts_first,
        );
        engine.process_event(&first);

        let out_of_order = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "egress TCP 10.0.0.1:8080 -> 93.184.216.34:443",
            ts_older,
        );
        let alerts = engine.process_event(&out_of_order);
        assert!(
            alerts.is_empty(),
            "dependent event older than prerequisite must not match"
        );

        let ordered = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "egress TCP 10.0.0.1:8080 -> 93.184.216.34:443",
            ts_newer,
        );
        let alerts = engine.process_event(&ordered);
        assert_eq!(
            alerts.len(),
            1,
            "dependent event after prerequisite should still match"
        );
    }

    #[test]
    fn event_matching_no_rules() {
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        // Tetragon process event — does not match any condition in the exfil rule
        let event = make_event(
            EventSource::Tetragon,
            "process",
            NormalizedVerdict::None,
            "process_exec /usr/bin/ls",
            ts,
        );

        let alerts = engine.process_event(&event);
        assert!(alerts.is_empty());
    }

    #[test]
    fn multiple_rules_same_event() {
        let rule1 = single_condition_rule();
        let rule2 = parse_rule(
            r#"
schema: clawdstrike.hunt.correlation.v1
name: "Any File Deny"
severity: medium
description: "Any file denial"
window: 1m
conditions:
  - source: receipt
    action_type: file
    verdict: deny
    bind: evt
output:
  title: "File denial observed"
  evidence:
    - evt
"#,
        )
        .unwrap();

        let mut engine = CorrelationEngine::new(vec![rule1, rule2]).unwrap();

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let event = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Deny,
            "/secret",
            ts,
        );

        let alerts = engine.process_event(&event);
        assert_eq!(alerts.len(), 2, "both rules should fire");

        let names: Vec<&str> = alerts.iter().map(|a| a.rule_name.as_str()).collect();
        assert!(names.contains(&"Forbidden Path Access"));
        assert!(names.contains(&"Any File Deny"));
    }

    #[test]
    fn single_event_cannot_satisfy_root_and_dependent_condition() {
        // Regression: a single event that matches both a root condition and
        // a dependent condition (with `after` pointing to the root) must NOT
        // bind to both in the same pass. The dependent condition should only
        // match against windows that existed *before* this event was processed.
        let rule = parse_rule(
            r#"
schema: clawdstrike.hunt.correlation.v1
name: "Self-match guard"
severity: high
description: "Should require two distinct events"
window: 30s
conditions:
  - source: receipt
    action_type: egress
    bind: first
  - source: receipt
    action_type: egress
    after: first
    within: 30s
    bind: second
output:
  title: "Two egress events"
  evidence:
    - first
    - second
"#,
        )
        .unwrap();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let event = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "evil.com:443",
            ts,
        );

        // A single event should open a window but NOT complete it.
        let alerts = engine.process_event(&event);
        assert!(
            alerts.is_empty(),
            "a single event must not satisfy both root and dependent conditions"
        );

        // A second distinct event should now complete the window.
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 5).unwrap();
        let event2 = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "other.com:443",
            ts2,
        );
        let alerts = engine.process_event(&event2);
        assert_eq!(
            alerts.len(),
            1,
            "two distinct events should complete the sequence"
        );
    }

    #[test]
    fn single_event_cannot_satisfy_chained_dependent_conditions() {
        let rule = parse_rule(
            r#"
schema: clawdstrike.hunt.correlation.v1
name: "Dependent chain"
severity: high
description: "Should require three distinct events"
window: 30s
conditions:
  - source: receipt
    action_type: file
    bind: first
  - source: receipt
    action_type: egress
    after: first
    within: 30s
    bind: second
  - source: receipt
    action_type: egress
    after: second
    within: 30s
    bind: third
output:
  title: "Three-step sequence"
  evidence:
    - first
    - second
    - third
"#,
        )
        .unwrap();

        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();
        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 5).unwrap();
        let ts3 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 10).unwrap();

        let first = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /tmp/data",
            ts1,
        );
        assert!(engine.process_event(&first).is_empty());

        // This event matches both dependent conditions by predicate; it must
        // only satisfy the first dependent bind in this pass.
        let second = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "evil.com:443",
            ts2,
        );
        assert!(
            engine.process_event(&second).is_empty(),
            "a single dependent event must not satisfy an entire chain"
        );

        let third = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "other.com:443",
            ts3,
        );
        assert_eq!(engine.process_event(&third).len(), 1);
    }

    #[test]
    fn condition_matches_source_check() {
        let cond = RuleCondition {
            source: vec!["receipt".to_string()],
            action_type: None,
            verdict: None,
            target_pattern: None,
            not_target_pattern: None,
            after: None,
            within: None,
            bind: "test".to_string(),
        };
        let cp = CompiledPatterns {
            target: None,
            not_target: None,
        };

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();

        let receipt_event = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "test",
            ts,
        );
        assert!(condition_matches(&cond, &cp, &receipt_event));

        let tetragon_event = make_event(
            EventSource::Tetragon,
            "process",
            NormalizedVerdict::None,
            "test",
            ts,
        );
        assert!(!condition_matches(&cond, &cp, &tetragon_event));
    }

    #[test]
    fn condition_matches_target_pattern() {
        let cond = RuleCondition {
            source: vec!["receipt".to_string()],
            action_type: None,
            verdict: None,
            target_pattern: Some(r"\.env$".to_string()),
            not_target_pattern: None,
            after: None,
            within: None,
            bind: "test".to_string(),
        };
        let cp = CompiledPatterns {
            target: Some(Regex::new(r"\.env$").unwrap()),
            not_target: None,
        };

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();

        let matching = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /app/.env",
            ts,
        );
        assert!(condition_matches(&cond, &cp, &matching));

        let non_matching = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /app/config.toml",
            ts,
        );
        assert!(!condition_matches(&cond, &cp, &non_matching));
    }

    #[test]
    fn condition_matches_not_target_pattern() {
        let cond = RuleCondition {
            source: vec!["receipt".to_string()],
            action_type: None,
            verdict: None,
            target_pattern: None,
            not_target_pattern: Some(r"^localhost".to_string()),
            after: None,
            within: None,
            bind: "test".to_string(),
        };
        let cp = CompiledPatterns {
            target: None,
            not_target: Some(Regex::new(r"^localhost").unwrap()),
        };

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();

        let excluded = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "localhost:8080",
            ts,
        );
        assert!(!condition_matches(&cond, &cp, &excluded));

        let allowed = make_event(
            EventSource::Receipt,
            "egress",
            NormalizedVerdict::Allow,
            "evil.com:443",
            ts,
        );
        assert!(condition_matches(&cond, &cp, &allowed));
    }

    #[test]
    fn condition_matches_verdict_filter() {
        let cond = RuleCondition {
            source: vec!["receipt".to_string()],
            action_type: None,
            verdict: Some("deny".to_string()),
            target_pattern: None,
            not_target_pattern: None,
            after: None,
            within: None,
            bind: "test".to_string(),
        };
        let cp = CompiledPatterns {
            target: None,
            not_target: None,
        };

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();

        let deny_event = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Deny,
            "test",
            ts,
        );
        assert!(condition_matches(&cond, &cp, &deny_event));

        let allow_event = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "test",
            ts,
        );
        assert!(!condition_matches(&cond, &cp, &allow_event));
    }

    #[test]
    fn flush_emits_partially_complete_windows() {
        // Flush should emit alerts for fully-matched windows only
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts1,
        );
        engine.process_event(&e1);

        // Only first condition matched — flush should NOT produce an alert
        let alerts = engine.flush();
        assert!(
            alerts.is_empty(),
            "incomplete window should not produce alert on flush"
        );
    }

    #[test]
    fn flush_does_not_emit_alerts_from_expired_windows() {
        let rule = single_condition_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();
        let stale_ts = Utc::now() - chrono::Duration::minutes(10);
        let stale_event = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Deny,
            "/etc/passwd",
            stale_ts,
        );

        let mut bound_events = std::collections::HashMap::new();
        bound_events.insert("denied_access".to_string(), vec![stale_event]);
        engine.windows.insert(
            0,
            vec![WindowState {
                bound_events,
                window_start: stale_ts,
            }],
        );

        let alerts = engine.flush();
        assert!(
            alerts.is_empty(),
            "expired windows should be evicted before flush emits alerts"
        );
    }

    #[test]
    fn condition_matches_verdict_forwarded() {
        let cond = RuleCondition {
            source: vec!["hubble".to_string()],
            action_type: None,
            verdict: Some("forwarded".to_string()),
            target_pattern: None,
            not_target_pattern: None,
            after: None,
            within: None,
            bind: "test".to_string(),
        };
        let cp = CompiledPatterns {
            target: None,
            not_target: None,
        };

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();

        let forwarded_event = make_event(
            EventSource::Hubble,
            "egress",
            NormalizedVerdict::Forwarded,
            "evil.com:443",
            ts,
        );
        assert!(condition_matches(&cond, &cp, &forwarded_event));

        let allow_event = make_event(
            EventSource::Hubble,
            "egress",
            NormalizedVerdict::Allow,
            "evil.com:443",
            ts,
        );
        assert!(!condition_matches(&cond, &cp, &allow_event));
    }

    #[test]
    fn condition_matches_verdict_dropped() {
        let cond = RuleCondition {
            source: vec!["hubble".to_string()],
            action_type: None,
            verdict: Some("dropped".to_string()),
            target_pattern: None,
            not_target_pattern: None,
            after: None,
            within: None,
            bind: "test".to_string(),
        };
        let cp = CompiledPatterns {
            target: None,
            not_target: None,
        };

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();

        let dropped_event = make_event(
            EventSource::Hubble,
            "egress",
            NormalizedVerdict::Dropped,
            "evil.com:443",
            ts,
        );
        assert!(condition_matches(&cond, &cp, &dropped_event));

        let forwarded_event = make_event(
            EventSource::Hubble,
            "egress",
            NormalizedVerdict::Forwarded,
            "evil.com:443",
            ts,
        );
        assert!(!condition_matches(&cond, &cp, &forwarded_event));
    }

    #[test]
    fn condition_matches_verdict_none() {
        let cond = RuleCondition {
            source: vec!["tetragon".to_string()],
            action_type: None,
            verdict: Some("none".to_string()),
            target_pattern: None,
            not_target_pattern: None,
            after: None,
            within: None,
            bind: "test".to_string(),
        };
        let cp = CompiledPatterns {
            target: None,
            not_target: None,
        };

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();

        let none_event = make_event(
            EventSource::Tetragon,
            "process",
            NormalizedVerdict::None,
            "process_exec /bin/sh",
            ts,
        );
        assert!(condition_matches(&cond, &cp, &none_event));

        let allow_event = make_event(
            EventSource::Tetragon,
            "process",
            NormalizedVerdict::Allow,
            "process_exec /bin/sh",
            ts,
        );
        assert!(!condition_matches(&cond, &cp, &allow_event));
    }

    #[test]
    fn condition_matches_verdict_unknown_rejects() {
        let cond = RuleCondition {
            source: vec!["receipt".to_string()],
            action_type: None,
            verdict: Some("invalid_verdict".to_string()),
            target_pattern: None,
            not_target_pattern: None,
            after: None,
            within: None,
            bind: "test".to_string(),
        };
        let cp = CompiledPatterns {
            target: None,
            not_target: None,
        };

        let ts = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();

        let event = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "test",
            ts,
        );
        assert!(
            !condition_matches(&cond, &cp, &event),
            "unknown verdict string should never match"
        );
    }

    #[test]
    fn hubble_source_matches_egress_condition() {
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();
        let ts2 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 5).unwrap();

        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /home/user/.env",
            ts1,
        );
        engine.process_event(&e1);

        // Hubble source should also match the second condition (source: [receipt, hubble])
        let e2 = make_event(
            EventSource::Hubble,
            "egress",
            NormalizedVerdict::Allow,
            "evil.com:443",
            ts2,
        );
        let alerts = engine.process_event(&e2);
        assert_eq!(alerts.len(), 1);
    }

    #[test]
    fn evict_expired_capped_uses_shorter_window() {
        // The exfil rule has a 30s window. Use a max_window of 10s so that
        // windows older than 10s are evicted even though the rule allows 30s.
        let rule = exfil_rule();
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts1 = Utc.with_ymd_and_hms(2025, 6, 15, 12, 0, 0).unwrap();

        // Inject a file-access event to start a window.
        let e1 = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts1,
        );
        engine.process_event(&e1);

        // Verify there is one active window.
        assert_eq!(engine.windows.len(), 1);

        // Evict with max_window = 0s — should immediately evict everything.
        engine.evict_expired_capped(chrono::Duration::zero());
        assert!(
            engine.windows.is_empty(),
            "zero max_window should evict all windows"
        );
    }

    #[test]
    fn evict_expired_capped_preserves_when_cap_larger_than_rule_window() {
        // With a cap larger than the rule window, eviction should
        // behave identically to the uncapped variant.
        let rule = exfil_rule(); // 30s window
        let mut engine = CorrelationEngine::new(vec![rule]).unwrap();

        let ts = Utc::now();
        // Feed a root-matching event that opens a window but does not complete
        // the rule sequence (no matching egress event yet).
        let root_only = make_event(
            EventSource::Receipt,
            "file",
            NormalizedVerdict::Allow,
            "read /etc/passwd",
            ts,
        );
        let alerts = engine.process_event(&root_only);
        assert!(
            alerts.is_empty(),
            "root-only event should not complete rule"
        );
        let before = engine.windows.get(&0).map_or(0, Vec::len);
        assert_eq!(before, 1, "expected one active correlation window");

        // A huge cap should not evict a just-created window.
        engine.evict_expired_capped(chrono::Duration::hours(24));
        let after = engine.windows.get(&0).map_or(0, Vec::len);
        assert_eq!(
            after, 1,
            "cap larger than rule window should preserve a fresh window"
        );
    }
}