CIS.M365.1.3.3 - (L2) Ensure 'External sharing' of calendars is not available
Overviewβ
1.3.3 (L2) Ensure 'External sharing' of calendars is not available
External calendar sharing allows an administrator to enable the ability for users to share calendars with anyone outside of the organization. Outside users will be sent a URL that can be used to view the calendar.
Rationaleβ
Attackers often spend time learning about organizations before launching an attack. Publicly available calendars can help attackers understand organizational relationships and determine when specific users may be more vulnerable to an attack, such as when they are traveling.
Impactβ
This functionality is not widely used. As a result, it is unlikely that implementation of this setting will cause an impact to most users. Users that do utilize this functionality are likely to experience a minor inconvenience when scheduling meetings or synchronizing calendars with people outside the tenant.
Remediation action:β
To remediate using the UI:
- Navigate to Microsoft 365 admin center https://admin.microsoft.com.
- Click to expand Settings select Org settings.
- In the Services section click Calendar.
- Uncheck Let your users share their calendars with people outside of your organization who have Office 365 or Exchange.
- Click Save.
PowerShellβ
- Connect to Exchange Online using
Connect-ExchangeOnline. - Run the following Exchange Online PowerShell command:
Set-SharingPolicy -Identity "Default Sharing Policy" -Enabled $False
Related linksβ
- Microsoft 365 Admin Center
- Share Microsoft 365 calendars with people outside your organization
- CIS Microsoft 365 Foundations Benchmark v6.0.1 - Page 53
Test Metadataβ
| Field | Value |
|---|---|
| Test ID | CIS.M365.1.3.3 |
| Severity | Medium |
| Suite | CIS |
| Category | CIS E3 Level 2 |
| PowerShell test | Test-MtCisCalendarSharing |
| Tags | CIS, CIS E3, CIS E3 Level 2, CIS M365 v6.0.1, CIS.M365.1.3.3, L2 |
Sourceβ
- Pester test:
tests/cis/Test-MtCisCalendarSharing.Tests.ps1 - PowerShell source:
powershell/public/cis/Test-MtCisCalendarSharing.ps1