Skip to content

Commit

Permalink
updated severity, system user returns info (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
arielkr256 authored and egibs committed Jan 16, 2024
1 parent 6969de8 commit 3eb588d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions global_helpers/panther_base_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from functools import reduce
from ipaddress import ip_address, ip_network
from typing import Any, List, Optional, Sequence, Union

from panther_config import config

# # # # # # # # # # # # # #
Expand Down
2 changes: 2 additions & 0 deletions rules/panther_audit_rules/panther_user_modified.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,6 @@ def severity(event):
user = event.udm("actor_user")
if user == "scim":
return "INFO"
if event.deep_get("actor", "id") == "00000000-0000-4000-8000-000000000000":
return "INFO"
return "DEFAULT"

0 comments on commit 3eb588d

Please sign in to comment.