Skip to content

Commit 6c1f238

Browse files
authored
Merge branch 'main' into additional_genai_coverage
2 parents ddd34e9 + f32db7b commit 6c1f238

File tree

111 files changed

+7557
-1219
lines changed

Some content is hidden

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

111 files changed

+7557
-1219
lines changed

detection_rules/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def parse_rules_config(path: Path | None = None) -> RulesConfig: # noqa: PLR091
227227
raise ValueError(f"rules config file does not exist: {path}")
228228
loaded = yaml.safe_load(path.read_text())
229229
elif CUSTOM_RULES_DIR:
230-
path = Path(CUSTOM_RULES_DIR) / "_config.yaml"
230+
path = Path(CUSTOM_RULES_DIR).expanduser() / "_config.yaml"
231231
if not path.exists():
232232
raise FileNotFoundError(
233233
"""

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",
@@ -234,7 +237,8 @@
234237
"o365.audit.ExtendedProperties.ResultStatusDetail": "keyword",
235238
"o365.audit.OperationProperties.Name": "keyword",
236239
"o365.audit.OperationProperties.Value": "keyword",
237-
"o365.audit.OperationCount": "long"
240+
"o365.audit.OperationCount": "long",
241+
"o365.audit.AppAccessContext.AADSessionId": "keyword"
238242
},
239243
"logs-okta*": {
240244
"okta.debug_context.debug_data.flattened.requestedScopes": "keyword",

0 commit comments

Comments
 (0)