System audit policy modified. SubcategoryGuid and SubcategoryName indicate what changed. AuditPolicyChanges shows the new setting.
Disabling audit policies blinds the SIEM (T1562.002). Disabling logon, process creation, or privilege use auditing directly reduces detection capability. Attackers do this immediately after gaining admin access.
Alert: any change that sets auditing to 'No Auditing'. Alert: changes outside business hours or by non-IT accounts. Baseline expected audit policy — any deviation warrants investigation.
SubjectUserNameTargetUserNameLogonTypeIpAddressWorkstationName | Tactic | Technique |
|---|---|
| Defense Evasion | Disable Windows Event Logging (T1562.002) |
Starting points — adapt the log source, projected fields and thresholds for your environment.
title: Audit Policy Disabled
status: stable
description: Audit policy change disabling auditing
author: theadminstack.com
date: 2026/05/16
logsource:
product: windows
service: security
detection:
selection:
EventID: 4719
AuditPolicyChanges|contains: 'No Auditing'
condition: selection
falsepositives:
- Legitimate GPO updates
level: high
tags:
- attack.defense_evasion
- attack.t1562.002
SecurityEvent
| where EventID == 4719 // System audit policy was changed
| project TimeGenerated, Computer, SubjectUserName, TargetUserName, LogonType, IpAddress, WorkstationName
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:Security" EventCode=4719
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# System audit policy was changed — add EventData fields: SubjectUserName, TargetUserName, LogonType, IpAddress`
System audit policy was changed. System audit policy modified. SubcategoryGuid and SubcategoryName indicate what changed. AuditPolicyChanges shows the new setting.
Event 4719 is written to the Security channel by Microsoft-Windows-Security-Auditing. Advanced Audit Policy — enable the 'Policy Change' subcategory (Success and/or Failure).
Event 4719 is associated with: Disable Windows Event Logging (T1562.002).
Alert: any change that sets auditing to 'No Auditing'. Alert: changes outside business hours or by non-IT accounts. Baseline expected audit policy — any deviation warrants investigation.