Operator On The Wire
Join
← Back to Knowledge Base
BLUE TEAM / THREAT HUNT / ACTIVE DIRECTORY / GPO

SYSVOL Tampering

This note documents detection patterns related to SYSVOL GPO Tampering within Active Directory environments.


Direct Indicators

LogEvent IDMeaningForensic ValueNotes
Security5145Network share accessedCriticalAccess to SYSVOL policy files.
Security4663Object accessCriticalModification of files inside SYSVOL.
Sysmon11File createdHighNew script or payload dropped.

Indirect Indicators

IndicatorWhat To Look ForForensic ValueNotes
Script changes in policy folderStartup/logon scripts alteredCriticalExecution across domain.
Registry.pol modificationPolicy registry changesHighUsed for configuration abuse.
Unexpected file timestampsModified policy filesHighPossible tampering.

Common Tools

ToolUsage
Manual file editingDirect SYSVOL modification.
SharpGPOAbuseDeploys payloads via SYSVOL.
PowerShellScript deployment.

Relevant Artifacts

  • SYSVOL file system
  • Policy GUID folders
  • MFT timestamps
  • EDR telemetry
  • Security logs

MITRE ATT&CK References

  • T1484 Domain Policy Modification

Decision Tree

  1. Detect SYSVOL file modification.
  2. Identify modifying account.
  3. Identify modified policy GUID.
  4. Inspect script or payload.
  5. Determine impacted hosts.

Example Detection Templates

KQL

SecurityEvent
| where EventID in (4663,5145)
| where ObjectName contains "SYSVOL"

Sigma

title: SYSVOL Policy Tampering
logsource:
  product: windows
  service: security
detection:
  selection:
    EventID:
      - 4663
      - 5145
  condition: selection
level: high