Skip to content

Commit

Permalink
THREAT-411 ZIA AdminAuditRules - Password, Log, Backup
Browse files Browse the repository at this point in the history
  • Loading branch information
akozlovets098 committed Nov 12, 2024
1 parent 752ad86 commit 2b3990c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packs/zscaler_zia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ PackDefinition:
IDs:
- ZIA.Account.Access.Removed
- ZIA.Additional.Cloud.Roles
- ZIA.Backup.Deleted
- ZIA.Cloud.Account.Created
- ZIA.Golden.Restore.Point.Dropped
- ZIA.Insecure.Password.Settings
- ZIA.Logs.Downloaded
- ZIA.Password.Expiration
- ZIA.Trust.Modification
- panther_zscaler_helpers
Expand Down
4 changes: 2 additions & 2 deletions rules/zscaler_rules/zia/zia_golden_restore_point_dropped.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def rule(event):
if (
action == "UPDATE"
and category == "BACKUP_AND_RESTORE"
and golden_restore_point_pre == True
and golden_restore_point_post == False
and golden_restore_point_pre is True
and golden_restore_point_post is False
):
return True
return False
Expand Down
1 change: 0 additions & 1 deletion rules/zscaler_rules/zia/zia_insecure_password_settings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from panther_zscaler_helpers import zia_alert_context, zia_success
from pygments.lexer import default


def rule(event):
Expand Down

0 comments on commit 2b3990c

Please sign in to comment.