Back to Blog

Find Risky Inbox Rules in Office 365

Inbox Automation such as forwarding, redirecting, and moving items around can be crucial to many business operations.  For example today I was integrating receipt bank, a third party receipt and invoicing system which in turn integrates with our accounting software.  Like many respectable third party systems, it supports a robust API for fetching invoices from my suppliers.  However it does not do them all and like in many instances, mailbox automation comes in to help.  In this case, however, I have to set up an auto-forward outside of our organisation because Office 365 does not allow our delegate mailbox (our accounts mailbox) to be accessed from outside the organisation.  

My solution after some consternation was to create an external auto-forward. Now for those security-minded among you, external mail forwards raises some warning flags.  External forwarding, when used by mal-actors can be a telltale sign of risk behaviors such as invoice fraud.  As such many organisations block it outright.  In fact, as an organisation, we do too, however, there are ways to create explicit exceptions, by global admins only, for use cases such as mine.  Anyway security arguments aside it is clear that the area is contentious with both pros and cons to the argument.

This article, however, is going to show you how using some handy commands you can identify risky rules.  You may want to use these commands in a larger reporting function, or use them to alert you, so I will deliberately leave that to you and focus only on a few great commands.

First off you want to log in to Exchange Online using a global administrator.  Depending on whether you have multi-factor authentication turned on you will need to use one of these approaches. Without MFA, WIth MFA  FYI, we would always recommend having MFA on for all of your global admin accounts.  

Find ALL Inbox Rules in Office 365

If your organisation isn’t too large this can be a great command.  it will list all rules in a human-readable form making use of the “Description“ field in which Microsoft generates a plain-speaking sentence from your rule conditions

$mbox = Get-Mailbox; $mbox | Foreach { Get-InboxRule -Mailbox $_.DistinguishedName | Select-Object -Property Name,Enabled,Identity,Description | convertto-json }

NB:  I have a conversion to JSON format at the end which can be useful if it is to be consumed by another piece of code.  It’s up to you

Identify Risky Forwarding Rules

There are numerous examples of this script to be found online, however, I like this one because it is simple and shows all forwarding.  A quick scan of the results and you will see external domains.  It can also be easily amended to alert ONLY when it finds an external domain that is not your domain, however, we have not done that here

$mbox = Get-Mailbox;
foreach ($m in $mbox) {
   $rules = Get-Inboxrule -Mailbox $m.primarysmtpaddress
   $forwardingRules = $rules | Where-Object {$_.forwardTo -or $_.forwardAsAttachmentTo -or $_.redirectTo}
   foreach ($rule in $forwardingRules) {
       $rule | Select-Object -Property Identity, forwardTo, forwardAsAttachmentTo, redirectTo, Name, RuleIdentity
   }
}

Find all rules for a given user

Finally, if you know the user whose mailbox you suspect of risky behaviour then the following can be used to show all their forwarding rules

get-inboxrule -Mailbox "joe.bloggs@YourCompany.com" | Select-Object -Property Identity, forwardTo, forwardAsAttachmentTo, redirectTo, Name, RuleIdentity

Conclusion

Between the above commands, you should be able to quickly navigate the risky forwarding state of your organisation. Of course, there are variations depending on what you want. Contact us if you can think of useful improvements.

More from the Blog

A Closer Look at the Midnight Blizzard Crew

Microsoft's security team has recently made a significant discovery regarding an increase in cyber-attacks orchestrated by the Russian state-backed group known as the Midnight Blizzard crew. This group, which also operates under the aliases Nobelium, APT29, Cozy Bear, Iron Hemlock, and The Dukes, has been actively targeting personal credentials, according to Microsoft's findings.

Read Story

Navigating M365 Secure Score Limitations for MSPs

Discover the limitations of the M365 Secure Score for MSPs. Understand the scope and potential restrictions when using this tool to assess and enhance the security posture of Microsoft 365 environments. Know how to navigate through these shortcomings.

Read Story

Octiga Vs Flying Solo with Office 365 Security for MSPs

The purpose of the Octiga Office 365 security app is not to replace M365 security but to ensure that MSPs can deliver it consistently, coherently and rapidly to all your clients. A short video explains how Octiga makes MSPs' work super efficient and super fast.

Read Story

Never miss a minute.

Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa.
We will never share your email address with third parties.