Hi,
I'm trying to create the custom use case "Windows Authentication - Success from Public IPs Alert" with below informations.
Event code = 4624
Action = Success
IP Range = Any Public IP
Here is my KQL query to create the custom rule for Windows OS.
(event.code : "4624" and event.outcome : "success") and (NOT winlog.event_data.IpAddress : 10.* or NOT winlog.event_data.IpAddress : 172.[16-31].* or NOT winlog.event_data.IpAddress : 192.168.*)
But doesn't work yet. It's always trigger the alert whatever I login with public and private IP. I just want to get the alert when login from public IP.
May I get your information how can I correct the query please? I'm looking forward to hear from you.
Thank you.