Skip to main content
Version: 2.1.0

CIS.M365.2.1.2 - (L1) Ensure the Common Attachment Types Filter is enabled (Only Checks Default Policy)

Overview

2.1.2 (L1) Ensure the Common Attachment Types Filter is enabled

The Common Attachment Types Filter lets a user block known and custom malicious file types from being attached to emails.

Rationale

Blocking known malicious file types can help prevent malware-infested files from infecting a host.

Impact

Blocking common malicious file types should not cause an impact in modern computing environments.

Remediation action:

To enable the Common Attachment Types Filter:

  1. Navigate to Microsoft 365 Defender.
  2. Click to expand Email & collaboration select Policies & rules.
  3. On the Policies & rules page select Threat policies.
  4. Under polices select Anti-malware and click on the Default (Default) policy.
  5. On the Policy page that appears on the right hand pane scroll to the bottom and click on Edit protection settings, check the Enable the common attachments filter.
  6. Click Save.
PowerShell
  1. Connect to Exchange Online using Connect-ExchangeOnline.
  2. Run the following Exchange Online PowerShell command:
Set-MalwareFilterPolicy -Identity Default -EnableFileFilter $true

Note: Audit and Remediation guidance may focus on the Default policy however, if a Custom Policy exists in the organization's tenant, then ensure the setting is set as outlined in the highest priority policy listed.

Test Metadata

FieldValue
Test IDCIS.M365.2.1.2
SeverityMedium
SuiteCIS
CategoryCIS E3 Level 1
PowerShell testTest-MtCisAttachmentFilter
TagsCIS, CIS E3, CIS E3 Level 1, CIS M365 v6.0.1, CIS.M365.2.1.2, L1

Source

  • Pester test: tests/cis/Test-MtCisAttachmentFilter.Tests.ps1
  • PowerShell source: powershell/public/cis/Test-MtCisAttachmentFilter.ps1