Skip to content

Commit

Permalink
Fixed Audit/Block categorization MDE Advanced Hunting (#557)
Browse files Browse the repository at this point in the history
When parsing the Microsoft Defender for Endpoint Advanced Hunting logs, Blocked events would show as Audit events in the data grid, that is now fixed.
  • Loading branch information
HotCakeX authored Jan 22, 2025
1 parent d944863 commit c5fd8db
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ internal static HashSet<FileIdentity> Retrieve(List<MDEAdvancedHuntingData> data
{

Origin = FileIdentityOrigin.MDEAdvancedHunting,
Action = EventAction.Audit,
Action = EventAction.Block,
TimeCreated = GetEventDataDateTimeValue(possibleCodeIntegrityBlockEvent.Timestamp),
ComputerName = possibleCodeIntegrityBlockEvent.DeviceName,
UserID = possibleCodeIntegrityBlockEvent.InitiatingProcessAccountName,
Expand Down Expand Up @@ -396,7 +396,7 @@ internal static HashSet<FileIdentity> Retrieve(List<MDEAdvancedHuntingData> data
{

Origin = FileIdentityOrigin.MDEAdvancedHunting,
Action = EventAction.Audit,
Action = EventAction.Block,
TimeCreated = GetEventDataDateTimeValue(possibleAppLockerBlockEvent.Timestamp),
ComputerName = possibleAppLockerBlockEvent.DeviceName,
UserID = possibleAppLockerBlockEvent.InitiatingProcessAccountName,
Expand Down Expand Up @@ -608,4 +608,4 @@ internal static HashSet<FileIdentity> Retrieve(List<MDEAdvancedHuntingData> data
#endregion


}
}

0 comments on commit c5fd8db

Please sign in to comment.