You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These alerts are from a Fortinet firewall with excessive failures. Turns out it was a windows 11 update 24H2 printing issue where when they print a broadcast was fired out causing these failures.
The way I found the actual entities was with the following KQL since the sentinel alert didnt have an entity for whatever reason:
let threshold = 1000; // Adjusted threshold value based on observed counts
_Im_NetworkSession
| where EventResult == 'Failure'
| where isnotempty(SrcIpAddr)
| where TimeGenerated > ago(10h) // Limit data to the last 10 hours
| summarize Count = count(),
DvcHostnames = make_list(DvcHostname),
DstHostnames = make_list(DstHostname),
EventOriginalResultDetails = make_list(EventOriginalResultDetails),
Process = make_list(Process),
InitiatingProcessFolderPath = make_list(InitiatingProcessFolderPath),
EventProduct = make_list(EventProduct),
Dst = make_list(Dst)
by SrcIpAddr, TimeBucket = bin(TimeGenerated, 5m), User
| where Count > threshold
| project TimeBucket, SrcIpAddr, Count, threshold, User, DvcHostnames, DstHostnames, EventOriginalResultDetails, Process, InitiatingProcessFolderPath, EventProduct, Dst // Project the necessary columns
| order by Count desc // Sort by Count from highest to lowest
| take 10 // Limit results to the top 10
Happy to report the registry edit for the printdefault fixed the broadcast and stopped these excessive failures with Sentinel:
This alert kicked off but we see no entities. Some hunting yielded no results either to try to narrow it down.
The text was updated successfully, but these errors were encountered: