Unusual Kerberos Client Process
Description
Identifies network connections to the standard Kerberos port from an unusual process. On Windows, the only native system process that normally performs Kerberos traffic from a domain joined host is lsass.exe.
Query · eql
sequence by process.entity_id with maxspan=1m
[any where user.id like ("S-1-5-21*", "S-1-12-*") and
(
(event.category =="library" and dll.name : ("System.DirectoryServices.*.dll", "Wldap32.dll")) or
(event.category in ("network", "dns") and dns.question.name : "_ldap._tcp.*")
)]
[network where destination.port == 88 and source.port >= 49152 and
network.direction == "egress" and network.transport == "tcp" and
not destination.address : ("127.*", "::1", "66.64.*") and
not process.executable :
("?:\\Program Files (x86)\\GFI\\LanGuard 12 Agent\\lnsscomm.exe",
"?:\\Program Files\\Microsoft Azure Active Directory Connect\\AzureADConnect.exe",
"?:\\Program Files (x86)\\GalacticAgent\\bin\\GalacticScan.exe",
"?:\\Xelis Dental Trainer\\Bin-x64\\XelisDental.exe")]