Suspicious Trend Micro Security Agent Child Process
Description
Detects a suspicious child process of the Trend Micro Security Agent indicating a possible remote code execution attempt.
Query · eql
process where event.action == "start" and
(
(process.parent.name : "TmsaInstance64.exe" or process.working_directory : "C:\\Program Files (x86)\\Trend Micro\\Security Agent\\CCSF\\module\\BES\\") or
descendant of [process where event.action == "start" and process.parent.name : "TmsaInstance64.exe"]
) and
not (process.code_signature.subject_name == "Trend Micro, Inc." and process.code_signature.trusted == true) and
not process.executable : ("C:\\Program Files (x86)\\Trend Micro\\*", "?:\\Windows\\System32\\conhost.exe")