Skip to content

Commit

Permalink
add file/host state to msft graph alert context (#1220)
Browse files Browse the repository at this point in the history
  • Loading branch information
arielkr256 authored Apr 24, 2024
1 parent e2e9b4f commit 8e072a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion global_helpers/panther_base_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,9 @@ def msft_graph_alert_context(event):
return {
"category": event.get("category", ""),
"description": event.get("description", ""),
"userstates": event.get("userstates", []),
"userStates": event.get("userStates", []),
"fileStates": event.get("fileStates", []),
"hostStates": event.get("hostStates", []),
}


Expand Down

0 comments on commit 8e072a6

Please sign in to comment.