Exporting Exchange Mailbox via PowerShell
Identifies the use of the Exchange PowerShell cmdlet, New-MailBoxExportRequest, to export the contents of a primary mailbox or archive to a .pst file. Adversaries may target user email to collect sensitive information.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2020/12/15"
3integration = ["endpoint", "windows", "system", "sentinel_one_cloud_funnel", "m365_defender", "crowdstrike"]
4maturity = "production"
5min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
6min_stack_version = "8.14.0"
7updated_date = "2024/10/31"
8
9[rule]
10author = ["Elastic"]
11description = """
12Identifies the use of the Exchange PowerShell cmdlet, New-MailBoxExportRequest, to export the contents of a primary
13mailbox or archive to a .pst file. Adversaries may target user email to collect sensitive information.
14"""
15false_positives = ["Legitimate exchange system administration activity."]
16from = "now-9m"
17index = [
18 "logs-endpoint.events.process-*",
19 "winlogbeat-*",
20 "logs-windows.*",
21 "endgame-*",
22 "logs-system.security*",
23 "logs-sentinel_one_cloud_funnel.*",
24 "logs-m365_defender.event-*",
25 "logs-crowdstrike.fdr*",
26]
27language = "eql"
28license = "Elastic License v2"
29name = "Exporting Exchange Mailbox via PowerShell"
30note = """## Triage and analysis
31
32### Investigating Exporting Exchange Mailbox via PowerShell
33
34Email mailboxes and their information can be valuable assets for attackers. Company mailboxes often contain sensitive information such as login credentials, intellectual property, financial data, and personal information, making them high-value targets for malicious actors.
35
36The `New-MailBoxExportRequest` cmdlet is used to begin the process of exporting contents of a primary mailbox or archive to a .pst file. Note that this is done on a per-mailbox basis and this cmdlet is available only in on-premises Exchange.
37
38Attackers can abuse this functionality in preparation for exfiltrating contents, which is likely to contain sensitive and strategic data.
39
40#### Possible investigation steps
41
42- 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.
43- Investigate other alerts associated with the user/host during the past 48 hours.
44- Investigate the export operation:
45 - Identify the user account that performed the action and whether it should perform this kind of action.
46 - Contact the account owner and confirm whether they are aware of this activity.
47 - Check if this operation was approved and performed according to the organization's change management policy.
48 - Retrieve the operation status and use the `Get-MailboxExportRequest` cmdlet to review previous requests.
49 - By default, no group in Exchange has the privilege to import or export mailboxes. Investigate administrators that assigned the "Mailbox Import Export" privilege for abnormal activity.
50- Investigate if there is a significant quantity of export requests in the alert timeframe. This operation is done on a per-mailbox basis and can be part of a mass export.
51- If the operation was completed successfully:
52 - Check if the file is on the path specified in the command.
53 - Investigate if the file was compressed, archived, or retrieved by the attacker for exfiltration.
54
55### False positive analysis
56
57- This mechanism can be used legitimately. Analysts can dismiss the alert if the administrator is aware of the activity and it is done with proper approval.
58
59### Response and remediation
60
61- Initiate the incident response process based on the outcome of the triage.
62- If the involved host is not the Exchange server, isolate the host to prevent further post-compromise behavior.
63- Use the `Remove-MailboxExportRequest` cmdlet to remove fully or partially completed export requests.
64- Prioritize cases that involve personally identifiable information (PII) or other classified data.
65- 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.
66- Review the privileges of users with the "Mailbox Import Export" privilege to ensure that the least privilege principle is being followed.
67- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
68- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
69- 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).
70"""
71references = [
72 "https://www.volexity.com/blog/2020/12/14/dark-halo-leverages-solarwinds-compromise-to-breach-organizations/",
73 "https://docs.microsoft.com/en-us/powershell/module/exchange/new-mailboxexportrequest?view=exchange-ps",
74 "https://www.elastic.co/security-labs/siestagraph-new-implant-uncovered-in-asean-member-foreign-ministry",
75]
76risk_score = 47
77rule_id = "6aace640-e631-4870-ba8e-5fdda09325db"
78severity = "medium"
79tags = [
80 "Domain: Endpoint",
81 "OS: Windows",
82 "Use Case: Threat Detection",
83 "Tactic: Collection",
84 "Tactic: Execution",
85 "Resources: Investigation Guide",
86 "Data Source: Elastic Endgame",
87 "Data Source: Elastic Defend",
88 "Data Source: SentinelOne",
89 "Data Source: Microsoft Defender for Endpoint",
90 "Data Source: System",
91 "Data Source: Crowdstrike",
92]
93timestamp_override = "event.ingested"
94type = "eql"
95
96query = '''
97process where host.os.type == "windows" and event.type == "start" and
98 process.name: ("powershell.exe", "pwsh.exe", "powershell_ise.exe") and
99 process.command_line : ("*MailboxExportRequest*", "*-Mailbox*-ContentFilter*")
100'''
101
102
103[[rule.threat]]
104framework = "MITRE ATT&CK"
105[[rule.threat.technique]]
106id = "T1005"
107name = "Data from Local System"
108reference = "https://attack.mitre.org/techniques/T1005/"
109
110[[rule.threat.technique]]
111id = "T1114"
112name = "Email Collection"
113reference = "https://attack.mitre.org/techniques/T1114/"
114[[rule.threat.technique.subtechnique]]
115id = "T1114.002"
116name = "Remote Email Collection"
117reference = "https://attack.mitre.org/techniques/T1114/002/"
118
119
120
121[rule.threat.tactic]
122id = "TA0009"
123name = "Collection"
124reference = "https://attack.mitre.org/tactics/TA0009/"
125[[rule.threat]]
126framework = "MITRE ATT&CK"
127[[rule.threat.technique]]
128id = "T1059"
129name = "Command and Scripting Interpreter"
130reference = "https://attack.mitre.org/techniques/T1059/"
131[[rule.threat.technique.subtechnique]]
132id = "T1059.001"
133name = "PowerShell"
134reference = "https://attack.mitre.org/techniques/T1059/001/"
135
136
137
138[rule.threat.tactic]
139id = "TA0002"
140name = "Execution"
141reference = "https://attack.mitre.org/tactics/TA0002/"
Triage and analysis
Investigating Exporting Exchange Mailbox via PowerShell
Email mailboxes and their information can be valuable assets for attackers. Company mailboxes often contain sensitive information such as login credentials, intellectual property, financial data, and personal information, making them high-value targets for malicious actors.
The New-MailBoxExportRequest
cmdlet is used to begin the process of exporting contents of a primary mailbox or archive to a .pst file. Note that this is done on a per-mailbox basis and this cmdlet is available only in on-premises Exchange.
Attackers can abuse this functionality in preparation for exfiltrating contents, which is likely to contain sensitive and strategic data.
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 other alerts associated with the user/host during the past 48 hours.
- Investigate the export operation:
- Identify the user account that performed the action and whether it should perform this kind of action.
- Contact the account owner and confirm whether they are aware of this activity.
- Check if this operation was approved and performed according to the organization's change management policy.
- Retrieve the operation status and use the
Get-MailboxExportRequest
cmdlet to review previous requests. - By default, no group in Exchange has the privilege to import or export mailboxes. Investigate administrators that assigned the "Mailbox Import Export" privilege for abnormal activity.
- Investigate if there is a significant quantity of export requests in the alert timeframe. This operation is done on a per-mailbox basis and can be part of a mass export.
- If the operation was completed successfully:
- Check if the file is on the path specified in the command.
- Investigate if the file was compressed, archived, or retrieved by the attacker for exfiltration.
False positive analysis
- This mechanism can be used legitimately. Analysts can dismiss the alert if the administrator is aware of the activity and it is done with proper approval.
Response and remediation
- Initiate the incident response process based on the outcome of the triage.
- If the involved host is not the Exchange server, isolate the host to prevent further post-compromise behavior.
- Use the
Remove-MailboxExportRequest
cmdlet to remove fully or partially completed export requests. - Prioritize cases that involve personally identifiable information (PII) or other classified data.
- 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.
- Review the privileges of users with the "Mailbox Import Export" privilege to ensure that the least privilege principle is being followed.
- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
- 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).
References
Related rules
- Disable Windows Firewall Rules via Netsh
- Potential File Download via a Headless Browser
- Potential Remote Desktop Tunneling Detected
- Suspicious .NET Code Compilation
- Suspicious ScreenConnect Client Child Process