5.10 Ensure the Account Provisioning Activity report is reviewed at least weekly

Warning! Audit Deprecated

This audit has been deprecated and will be removed in a future update.

View Next Audit Version

Information

The Account Provisioning Activity report details any account provisioning that was attempted by an external application.

Rationale:

If the organization doesn't usually use a third party provider to manage accounts, any entry on the list is likely illicit. However, if the organization uses a third party provider, it is recommended to monitor transaction volumes and look for new or unusual third party applications that may be managing users. If anything unusual is observed, the provider should be contacted to determine the legitimacy of the action.

NOTE: Nessus has not performed this check. Please review the benchmark to ensure target compliance.

Solution

To review the Account Provisioning Activity report:

Navigate to Microsoft 365 Defender https://security.microsoft.com.

Click on Audit.

Set Activities to Added user for User administration activities.

Set Start Date and End Date.

Click Search.

Review.

To review Account Provisioning Activity report using PowerShell:

Connect to Exchange Online using Connect-ExchangeOnline.

Run the following Exchange Online PowerShell command:

$startDate = ((Get-date).AddDays(-7)).ToShortDateString()
$endDate = (Get-date).ToShortDateString()

Search-UnifiedAuditLog -StartDate $startDate -EndDate $endDate | Where-Object { $_.Operations -eq 'add user.' }

Review the output

See Also

https://workbench.cisecurity.org/benchmarks/10751