UAC Bypass via ICMLuaUtil Elevated COM Interface
Description
Identifies User Account Control (UAC) bypass attempts via the ICMLuaUtil elevated COM interface. Attackers may attempt to bypass UAC to stealthily execute code with elevated permissions.
Query · eql
process where event.action == "start" and
process.parent.name : "dllhost.exe" and
process.Ext.token.integrity_level_name == "high" and
process.parent.command_line : ("*3E5FC7F9-9A51-4367-9063-A120244FBEC7*", "*D2E7041B-2927-42FB-8E9F-7CE93B6DC937*") and
not process.executable :
("?:\\Windows\\System32\\WerFault.exe",
"?:\\Windows\\SysWOW64\\WerFault.exe",
"?:\\Windows\\System32\\wermgr.exe",
"?:\\Windows\\SysWOW64\\wermgr.exe",
"?:\\Windows\\System32\\dccw.exe") and
/* Issue #364 */
not (process.code_signature.subject_name == "WireGuard LLC" and process.code_signature.trusted == true)