Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The audit log helps you investigate specific activities across Microsoft 365 services. In the Microsoft Defender portal, Microsoft Defender XDR and Microsoft Defender for Endpoint activities are audited.
Some of the audited activities include:
- Changes to data retention settings
- Changes to advanced features
- Creation of indicators of compromise
- Isolation of devices
- Add\edit\deletion of security roles
- Create\edit custom detection rules
- Assign user to an incidents
For a complete list of Microsoft Defender activities that are audited, see Microsoft Defender activities and Microsoft Defender for Endpoint activities.
Auditing is automatically turned on for Microsoft Defender. Features that are audited are logged in the audit log automatically. Auditing can also collect audit logs from GCC environments.
Prerequisites
To access the audit log, you need to have the View-Only Audit Logs or Audit Logs role in Exchange Online. By default, those roles are assigned to the Compliance Management and Organization Management role groups.
Note
Global administrators in Office 365 and Microsoft 365 are automatically added as members of the Organization Management role group in Exchange Online.
Microsoft Defender uses the Microsoft Purview auditing solution. Before you can look at the audit data in the Microsoft Defender portal, you need to turn on auditing in the Microsoft Purview portal. For more information, see Turn auditing on or off.
Important
Global Administrator is a highly privileged role that should be limited to scenarios when you can't use an existing role. Microsoft recommends that you use roles with the fewest permissions. Using accounts with lower permissions helps improve security for your organization.
Search the audit log
You can search the audit log from the Microsoft Defender portal or the Microsoft Purview compliance portal. For detailed compliance portal instructions, see Search the audit log in the compliance portal. Audit log record retention is based on Microsoft Purview retention policies. For more information, see Manage audit log retention policies.
Follow these steps to search the audit log:
Go to the Microsoft Defender portal's Audit page. You can also open the Purview compliance portal and select Audit.
On the New Search page, filter the activities, dates, and users you want to audit.
Select Search
Export your results to Excel for further analysis.
For step-by-step instructions, see Search the audit log in the compliance portal.
How long audit log records are kept depends on your Microsoft Purview retention policies. To learn more, see Manage audit log retention policies.
Microsoft Defender XDR audit log activity reference
For a list of all events that are logged for user and admin activities in Microsoft Defender in the Microsoft 365 audit log, see:
- Custom detection activities in Microsoft Defender in the audit log
- Incident activities in Microsoft Defender in the audit log
- Suppression rule activities in Microsoft Defender in the audit log
Microsoft Defender for Endpoint audit log activity reference
The Microsoft 365 audit log records user and admin activities in Defender for Endpoint. For details, see:
- General settings activities in Defender for Endpoint in the audit log
- Indicator settings activities in Defender for Endpoint in the audit log
- Response action activities in Defender for Endpoint in the audit log
- Roles settings activities in Defender for Endpoint in the audit log
Search for events using a PowerShell script
You can use the following PowerShell code snippet to query the Office 365 Management API for Microsoft Defender XDR events. The script connects to Exchange Online PowerShell, establishes a remote session, and then searches the unified audit log for a specified record type and date range.
Note
Before you run this script, identify the record type value you need. See the API column in Audit log activities for the record type values.
$cred = Get-Credential
$s = New-PSSession -ConfigurationName microsoft.exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $cred -Authentication Basic -AllowRedirection
Import-PSSession $s
Search-UnifiedAuditLog -StartDate 2023/03/12 -EndDate 2023/03/20 -RecordType <ID>
Note
See the API column in Audit log activities for the record type values.
For more information, see Use a PowerShell script to search the audit log