Suspicious Process Creation CallTrace

Identifies when a process is created and immediately accessed from an unknown memory code region and by the same parent process. This may indicate a code injection attempt.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2021/10/24"
 3integration = ["windows"]
 4maturity = "production"
 5updated_date = "2024/05/21"
 6
 7[rule]
 8author = ["Elastic"]
 9description = """
10Identifies when a process is created and immediately accessed from an unknown memory code region and by the same parent
11process. This may indicate a code injection attempt.
12"""
13from = "now-9m"
14index = ["winlogbeat-*", "logs-windows.sysmon_operational-*"]
15language = "eql"
16license = "Elastic License v2"
17name = "Suspicious Process Creation CallTrace"
18note = """## Triage and analysis
19
20### Investigating Suspicious Process Creation CallTrace
21
22Attackers may inject code into child processes' memory to hide their actual activity, evade detection mechanisms, and decrease discoverability during forensics. This rule looks for a spawned process by Microsoft Office, scripting, and command line applications, followed by a process access event for an unknown memory region by the parent process, which can indicate a code injection attempt.
23
24#### Possible investigation steps
25
26- Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
27- Investigate any abnormal behavior by the subject process such as network connections, registry or file modifications, and any spawned child processes.
28- Investigate other alerts associated with the user/host during the past 48 hours.
29- Inspect the host for suspicious or abnormal behavior in the alert timeframe.
30- Create a memory dump of the child process for analysis.
31
32### False positive analysis
33
34- This activity is unlikely to happen legitimately. Benign true positives (B-TPs) can be added as exceptions if necessary.
35
36### Response and remediation
37
38- Initiate the incident response process based on the outcome of the triage.
39- Isolate the involved host to prevent further post-compromise behavior.
40- Remove and block malicious artifacts identified during triage.
41- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
42- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
43- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
44- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
45"""
46risk_score = 47
47rule_id = "3ed032b2-45d8-4406-bc79-7ad1eabb2c72"
48severity = "medium"
49tags = [
50    "Domain: Endpoint",
51    "OS: Windows",
52    "Use Case: Threat Detection",
53    "Tactic: Defense Evasion",
54    "Resources: Investigation Guide",
55    "Data Source: Sysmon",
56]
57type = "eql"
58
59query = '''
60sequence by host.id with maxspan=1m
61  [process where host.os.type == "windows" and event.code == "1" and
62   /* sysmon process creation */
63   process.parent.name : ("winword.exe", "excel.exe", "outlook.exe", "powerpnt.exe", "eqnedt32.exe", "fltldr.exe",
64                          "mspub.exe", "msaccess.exe","cscript.exe", "wscript.exe", "rundll32.exe", "regsvr32.exe",
65                          "mshta.exe", "wmic.exe", "cmstp.exe", "msxsl.exe") and
66
67   /* noisy FP patterns */
68   not (process.parent.name : "EXCEL.EXE" and process.executable : "?:\\Program Files\\Microsoft Office\\root\\Office*\\ADDINS\\*.exe") and
69   not (process.executable : "?:\\Windows\\splwow64.exe" and process.args in ("8192", "12288") and process.parent.name : ("winword.exe", "excel.exe", "outlook.exe", "powerpnt.exe")) and
70   not (process.parent.name : "rundll32.exe" and process.parent.args : ("?:\\WINDOWS\\Installer\\MSI*.tmp,zzzzInvokeManagedCustomActionOutOfProc", "--no-sandbox")) and
71   not (process.executable :
72            ("?:\\Program Files (x86)\\Microsoft\\EdgeWebView\\Application\\*\\msedgewebview2.exe",
73             "?:\\Program Files\\Adobe\\Acrobat DC\\Acrobat\\Acrobat.exe",
74             "?:\\Windows\\SysWOW64\\DWWIN.EXE") and
75        process.parent.name : ("winword.exe", "excel.exe", "outlook.exe", "powerpnt.exe")) and
76   not (process.parent.name : "regsvr32.exe" and process.parent.args : ("?:\\Program Files\\*", "?:\\Program Files (x86)\\*"))
77   ] by process.parent.entity_id, process.entity_id
78  [process where host.os.type == "windows" and event.code == "10" and
79   /* Sysmon process access event from unknown module */
80   winlog.event_data.CallTrace : "*UNKNOWN*"] by process.entity_id, winlog.event_data.TargetProcessGUID
81'''
82
83
84[[rule.threat]]
85framework = "MITRE ATT&CK"
86[[rule.threat.technique]]
87id = "T1055"
88name = "Process Injection"
89reference = "https://attack.mitre.org/techniques/T1055/"
90
91
92[rule.threat.tactic]
93id = "TA0005"
94name = "Defense Evasion"
95reference = "https://attack.mitre.org/tactics/TA0005/"

Triage and analysis

Investigating Suspicious Process Creation CallTrace

Attackers may inject code into child processes' memory to hide their actual activity, evade detection mechanisms, and decrease discoverability during forensics. This rule looks for a spawned process by Microsoft Office, scripting, and command line applications, followed by a process access event for an unknown memory region by the parent process, which can indicate a code injection attempt.

Possible investigation steps

  • Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
  • Investigate any abnormal behavior by the subject process such as network connections, registry or file modifications, and any spawned child processes.
  • Investigate other alerts associated with the user/host during the past 48 hours.
  • Inspect the host for suspicious or abnormal behavior in the alert timeframe.
  • Create a memory dump of the child process for analysis.

False positive analysis

  • This activity is unlikely to happen legitimately. Benign true positives (B-TPs) can be added as exceptions if necessary.

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • Isolate the involved host to prevent further post-compromise behavior.
  • Remove and block malicious artifacts identified during triage.
  • Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
  • Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
  • Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
  • Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).

Related rules

to-top