Elastic high stable eql
Unusual Child Process of dns.exe
Identifies an unexpected process spawning from dns.exe, the process responsible for Windows DNS server services, which may indicate activity related to remote code execution or other forms of exploitation.
Detection Logic
process where host.os.type == "windows" and event.type == "start" and
process.parent.name : "dns.exe" and
not process.executable : (
"?:\\Windows\\System32\\conhost.exe",
"?:\\Windows\\System32\\dns.exe",
/* Crowdstrike specific exclusion as it uses NT Object paths */
"\\Device\\HarddiskVolume*\\Windows\\System32\\conhost.exe",
"\\Device\\HarddiskVolume*\\Windows\\System32\\dns.exe",
"\\Device\\HarddiskVolume*\\Program Files\\ReasonLabs\\*"
) and
not ?process.parent.executable : "?:\\Program Files\\ReasonLabs\\DNS\\ui\\DNS.exe" False Positives
- ⚠ Werfault.exe will legitimately spawn when dns.exe crashes, but the DNS service is very stable and so this is a low occurring event. Denial of Service (DoS) attempts by intentionally crashing the service will also cause werfault.exe to spawn.
Field Validations
Loading…
Comments (0)
Loading comments...