You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description = "This hunt attempts to identify remote process injection by aggregating Sysmon `CreateRemoteThread` events by source process and returns the ones that we observed in only one unique host."
integration = ["windows"]
uuid = "4f878255-53b8-4914-9a7d-4b668bd2ea6a"
name = "Low Occurrence Rate of CreateRemoteThread by Source Process"
language = ["ES|QL"]
license = "Elastic License v2"
notes = [
"Adding `winlog.event_data.TargetImage` to the aggregation clause can be beneficial but may introduce more false-positives.",
]
mitre = ["T1055"]
query = [
'''
from logs-windows.sysmon_operational-*
| where @timestamp > now() - 7 day
| where host.os.family == "windows" and event.category == "process" and event.action == "CreateRemoteThread"