Matthew Green

I am a DFIR and detection guy from Sydney Australia.

O365: Hidden InboxRules

09 Jun 2019 » posts


In this post Im going to talk about Office365 hidden inbox rules. Im going to give some background, show rule modification, and talk about detection methodology.

Background

Attacks against Office 365 have generated a fair amount of industry acknowledgement in recent times as more and more organisations have moved towards cloud based services. Misconfiguration combined with less than optimal threat awareness means even the most simple attacks can provide access to this crucial service.

Inbox rules are typically part of evil methodology and can be abused across the attack lifecycle:

  • Defence Evasion
  • Reconnaissance
  • Persistence
  • Data collection / Exfiltration

Typically inbox rules are simple to detect statically via GUI access or in bulk from the Exchange Management Shell (EMS).


O365 OWA: Inbox rule https://outlook.office.com/mail/options/mail/rules



O365 EMS: Typical Powershell detection.


Hidden Rules

Minimally documented, Damian Pfammatter at Compass Security explained the methodology in his September 2018 blog post. In summary, inbox rules can be hidden by leveraging an API called Messaging Application Programming Interface (MAPI), which provides low level access to exchange data stores.

Below I am accessing the inbox rule manually via the MFCMAPI tool from a machine with an Outlook profile configured to our in scope mailbox. IPM.Rule.Version2.Message objects indicate an inbox rule.


EvilMove inbox rule: prior to change


Modification is simply adding an unsupported value to the PR_RULE_MSG_PROVIDER field (or blanking out).


EvilMove inbox rule hidden: fake provider details.


Once modified, the inbox rule is hidden and completely operational:


InboxRule hidden: no view in WebUI, InboxRule works as expected.



InboxRule hidden: EMS results.


Detection

At scale detection of hidden inbox rules comes down to two main areas.

1. MAPI based - point in time.

Microsoft have released a script for use over Exchange Web Services (EWS) - Get-AllTenantRulesAndForms that enables tenant wide collection of Exchange Rules and Forms querying the low level data stores. This script enables visibility of Hidden Rules but leaves out an essential PR_RULE_MSG_PROVIDER field for detection. A modified version from Glen Scales collecting the PR_RULE_MSG_PROVIDER field is available here - Get-AllTenantRulesAndForms (screenshot below).

  • Frequency analysis on RuleMsgProvider field is recommended as a starting point for detection.
  • Alert and investigate any inbox rules with blank or unusual RuleMsgProvider fields.
  • Alert and investigate IsPotentiallyMalicious = True - i.e rule action is an executable object.
  • Limitations are high privilege requirements - Global Admin role AND EWS ApplicationImpersonation.

Exchange Web Services (EWS): Empty RuleName and RuleMsgProvider fields.


The action, condition and command fields (if populated) are base64 encoded raw byte arrays. I have yet to find documentation on the format for decoding or reverse engineer the data but there are some identifiable strings that can provide insights into the rule.


Decoded Action: Rule to forward email to external SMTP account.


For investigations, it is also possible to attempt to reanimate the strings and unhide the rules using MFCMAPI. In my testing I have been able to have the rule reappear adding in a known PR_RULE_MSG_PROVIDER field value.

  • A fake, mistyped or blank PR_RULE_MSG_PROVIDER the rule would remain hidden.
  • Protocol documentation can be found here.
  • Remediation instructions can be found in the Further Reading section below.



2. Unified Audit Log - telemetry.

The Unified Audit Log (UAL) is a centralised log storing audit events for all Azure services. It can be accessed via O365 WebUI: Security & Compliance > Search > AuditLog Search or EMS Administration: Search-UnifiedAuditLog commandlet.

  • This method is best suited to active monitoring via a SIEM or monitoring solution.
  • Alert and investigate any unusual New-InboxRule (creation) or Set-InboxRule (modification) events.
  • Benefits include reduced privilege requirements - e.g a user with View-Only Audit Logs or Audit Logs roles enabled.
  • Logging must be enabled and retention is a consideration for historical searches.

Telemetry based detection - Search-UnifiedAuditLog: New-InboxRule event


Other Forwarding specific

O365 has other indirect detection capabilities that assist spotting hidden rules. One of those is built in alerting on forwarding of mail to external addresses. This alert is also generated as a SecurityComplianceAlert in the UAL. Keep in mind on compromise of a privileged account an attacker could simply suppress these alerts to stay under the radar.


Redirect Threat Management alert - Email also sent.


It is also possible to monitor traffic patterns of forwarded or redirected traffic. Below I have shown a summary inside the Security and Compliance Mailflow Dashboard.


Mailflow Dashboard: https://protection.office.com/mailflow/dashboard


Final Thoughts

In this post I have covered detection points for hidden inbox rules:

  • Point in time query via Exchange Web Services (EWS).
  • Rule creation and modification inside the Unified Audit Log.
  • Other alerts in O365 ecosystem

Although this post has an example of an inbox rule with external forwarding, hidden rules can be leveraged for other evil use cases including: persistence, reconnaissance and data collection. Best practice would include creation of a low privilege account for active monitoring of telemetry and periodic assessments leveraging a higher privilege account via Exchange Web Services.

I hope others found this post useful, feel free to reach out if you have any feedback, questions, or improvements.




Further reading

  1. Griffin, Stephen. MFCMAPI github

  2. Hartley, Dave. Malicious Outlook Rules, 2016

  3. Lambert, John. Office 365 Attacks, May 2019

  4. MSDN. How to delete corrupted, hidden inbox rules from a mailbox using MFCMAPI, February 2015

  5. Pfammatter, Damian. Hidden Inbox Rules in Microsoft Exchange, September 2018

  6. Scales, Glen. Auditing Inbox rules with EWS and the Graph API in Powershell, May 2019