E.3.9.1 prerequisite. Rules R0031-R0040 now use lifter:behavioral_*,
R0041 (open_relay) uses lifter:email_open_relay; the rest of the email,
canary, and intel cohorts already conformed. Each lifter at E.3.9-E.3.12
will claim its rules via str.startswith('lifter:<owner>_'), keeping the
ownership routing explicit and trivially extensible.
R0001-R0006 / R0030 lifter:* rules are E.3.13 (Identity/Credential)
territory and stay as-is.
25 lines
591 B
YAML
25 lines
591 B
YAML
rule_id: R0032
|
|
rule_version: 1
|
|
name: data_destruction
|
|
description: |
|
|
Mass destructive ops: Redis FLUSHALL, SQL DROP DATABASE, MongoDB
|
|
dropDatabase(), bulk DELETE without WHERE. Cross-event because we
|
|
want to confirm the verb landed on real data, not just a parse.
|
|
applies_to:
|
|
- session
|
|
match:
|
|
kind: lifter:behavioral_data_destruction
|
|
patterns:
|
|
- 'FLUSHALL'
|
|
- 'DROP\\s+DATABASE'
|
|
- 'TRUNCATE\\s+TABLE'
|
|
- 'dropDatabase\\(\\)'
|
|
- 'DELETE\\s+/\\_all'
|
|
emits:
|
|
- tactic: TA0040
|
|
technique_id: T1485
|
|
confidence: 0.95
|
|
evidence_fields:
|
|
- matched_op
|
|
- target
|