← Blog
// BLUE TEAM · DETECCIÓN

The Windows Event IDs every SOC should watch

Published Aug 18, 2026 · 9 min read
Blue TeamDetecciónWindows

Windows generates hundreds of event types and almost nobody reads them all. The good news: you don't have to. A handful of IDs tell, in order, the story of nearly any intrusion — from the first password attempt to the log clearing that covers the tracks. These are the ones that truly matter, grouped by what they reveal.

1. Authentication: an attack's first noise

2. Privileges and execution

3. Escalation and lateral movement

4. Persistence

5. Anti-forensics: when they try to erase the trail

6. PowerShell and Sysmon: real visibility

🪟 Investigating an ID you don't recognize? The Windows Event ID reference gives you, for each one, what it logs, its log source, the risk and what to hunt. And if you have suspicious logs, the log analyzer surfaces patterns and IOCs.

Turn the signal into detection

Watching the right event is half of it; the other half is writing the rule. With Sigma you write it once and convert it to KQL, SPL, Elastic or Wazuh. An example for point 3 (added to a privileged group):

title: Addition to a privileged domain group
logsource:
  product: windows
  service: security
detection:
  selection:
    EventID: 4728
    TargetUserName: 'Domain Admins'
  condition: selection
level: high
⚒️ Go from event to rule with Sigma Forge (and export it to five SIEM dialects), and grade it with the detection linter before pushing it.

Before hunting: make sure you're logging

Many of these events are off by default: command-line auditing (4688), script block logging (4104) and Sysmon must be enabled. A detection on an event you don't log is a detection that never fires. Review your audit policy before writing rules.

Checklist

It's not about reading everything, but about watching what tells the story. With these IDs, an intruder leaves footprints at every phase — you just have to be looking.

Share: LinkedIn X
Sergio Belmonte Morales
Sergio Belmonte Morales
Cybersecurity Analyst · SOC · Sentinel/KQL specialist