Auditing - Ensure The User Role Group Changes Are Reviewed At Least Weekly
Summary
Reason
By reviewing weekly, one can easily identify the right changes required in an organization and largely maintaining the Least Privilege and preventing Privilege creep. Insider Threats, either intentional or unintentional can occur when a user has higher than needed privileges and if accountability of role membership is maintained, then, it will keep the Insiders and malicious actors limited in the scope of potential damaging activities.
What If?
Enabling this setting will require the Administrators assigning rights to users, to justify the changes to the security auditors. Documentation including detailed policies, procedures, and change requests will need to be considered in order to keep a secure organization functioning within its planned operational level.
How to?
- Under Admin Centers click on Compliance to be redirected to Microsoft Purview.
- Click on Audit then select Search.
- In Activities find Added member to Role under the Role administration activities section.
- Now, set Start date and End date.
- Click Search.
- Review.
To review user role group changes, perform the following steps using the Exchange Online PowerShell Module:- Connect to Exchange Online using Connect-ExchangeOnline.
- Now, 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 member to role." }
3. Review the output
- Connect to Exchange Online using Connect-ExchangeOnline.
- Now, run the following Exchange Online PowerShell command:
Comments
Post a Comment