Execution via Windows Command Line Debugging Utility
Description
Identifies the execution of Microsoft Windows Debugging utility cdb.exe to execute shellcode or commands and from non standard installation paths. This may indicate an attempt to evade defenses using trusted binaries.
Query · eql
process where event.action == "start" and
(process.pe.original_file_name == "CDB.Exe" or process.name : "cdb.exe") and
process.code_signature.subject_name == "Microsoft Corporation" and
process.args : ("-cf", "-c", "-pd") and
not process.executable : ("C:\\Program Files (x86)\\*.exe", "C:\\Program Files\\*.exe") and
not process.parent.executable : "C:\\Windows\\SysWOW64\\WerFault.exe" and
not process.args : "!Analyze -show; dqs esp; dqs; dqs; dqs; dqs; dqs; dqs; dqs; dqs; dqs; q"