Potential Microsoft Outlook Remote Code Execution
Description
Identifies when Microsoft Outlook registers a new COM object followed by loading the configured module. This behavior is consistent with the successful exploitation of CVE-2024-21378 (a remote code execution in Microsoft Outlook).
Query · eql
sequence with maxspan=3m
[registry where event.action == "modification" and process.name : "outlook.exe" and
registry.data.strings != null and registry.path : "HKEY_USERS\\*_Classes\\CLSID\\*"] as event0
[library where event.action == "load" and process.name : "outlook.exe" and
dll.Ext.relative_file_creation_time <= 900 and
(dll.code_signature.exists == false or dll.code_signature.trusted == false) and
stringcontains~(event0.registry.data.strings, dll.name) and
not dll.path :
("?:\\Windows\\assembly\\NativeImages*",
"?:\\Windows\\Microsoft.NET\\*",
"?:\\Windows\\WinSxS\\*",
"?:\\Windows\\System32\\*",
"?:\\Windows\\SysWOW64\\*",
"?:\\Windows\\apppatch\\*",
"?:\\Program Files\\*",
"?:\\Program Files (x86)\\*")]