Skip to content

Commit 6edc40c

Browse files
committed
Merge branch 'main' into rt_0
2 parents a23649d + c3d0916 commit 6edc40c

File tree

134 files changed

+6406
-923
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+6406
-923
lines changed

detection_rules/cli_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def rule_prompt( # noqa: PLR0912, PLR0913, PLR0915
375375
# if failing due to a query, loop until resolved or terminated
376376
while True:
377377
try:
378-
contents["query"] = click.edit(contents["query"], extension=".eql")
378+
contents["query"] = click.edit(contents["query"], extension=".eql") # type: ignore[reportUnknownArgumentType]
379379
rule = TOMLRule(
380380
path=Path(path),
381381
contents=TOMLRuleContents.from_dict({"rule": contents, "metadata": meta}),

detection_rules/etc/deprecated_rules.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,11 @@
359359
"rule_name": "Potential Persistence via Cron Job",
360360
"stack_version": "7.14.0"
361361
},
362+
"bc0c6f0d-dab0-47a3-b135-0925f0a333bc": {
363+
"deprecation_date": "2025/11/21",
364+
"rule_name": "Deprecated - AWS Root Login Without MFA",
365+
"stack_version": "8.19"
366+
},
362367
"c6474c34-4953-447a-903e-9fcb7b6661aa": {
363368
"deprecation_date": "2021/04/15",
364369
"rule_name": "IRC (Internet Relay Chat) Protocol Activity to the Internet",
2.21 KB
Binary file not shown.
38.9 KB
Binary file not shown.

detection_rules/etc/non-ecs-schema.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@
145145
"kibana.alert.rule.threat.tactic.id": "keyword",
146146
"kibana.alert.workflow_status": "keyword",
147147
"kibana.alert.rule.rule_id": "keyword",
148-
"kibana.alert.rule.name": "keyword"
148+
"kibana.alert.rule.name": "keyword",
149+
"kibana.alert.risk_score": "long",
150+
"kibana.alert.rule.type": "keyword",
151+
"kibana.alert.rule.threat.tactic.name": "keyword"
149152
},
150153
"logs-google_workspace*": {
151154
"gsuite.admin": "keyword",
@@ -202,7 +205,8 @@
202205
"azure.activitylogs.properties.resourceDisplayName": "keyword",
203206
"azure.activitylogs.properties.appDisplayName": "keyword",
204207
"azure.activitylogs.properties.requestbody.properties.roleDefinitionId": "keyword",
205-
"azure.activitylogs.properties.responseBody": "keyword"
208+
"azure.activitylogs.properties.responseBody": "keyword",
209+
"azure.activitylogs.properties.status_code": "keyword"
206210
},
207211
"logs-azure.graphactivitylogs-*": {
208212
"azure.graphactivitylogs.properties.c_idtyp": "keyword",

0 commit comments

Comments
 (0)