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
event.action in ("virus_detected", "wildfire_virus_detected", "c2_communication", "spyware_detected", "large_upload", "denied") or network.application in ("dns-over-https", "ms-dc-replication")) or
69
-
70
-
// Fortigate suspicious events
71
-
(event.dataset == "fortinet_fortigate.log" and
72
-
(event.action in ("outbreak-prevention", "deny", "infected", "blocked") or message like "backdoor*" or message like "Proxy*" or message like "anomaly*" or message like "P2P*" or message like "misc*" or message like "DNS.Over.HTTPS" or message like "Remote.Access")) or
73
-
74
-
// Elastic Defend Alerts
75
-
(event.module == "endpoint" and event.dataset == "endpoint.alerts")
76
-
77
-
// extract source.ip from PANW or Fortigate events and host.ip from Elastic Defend alert
78
-
|eval fw_alert_source_ip = CASE(event.dataset in ("panw.panos", "fortinet_fortigate.log"), source.ip, null),
0 commit comments