Skip to main content

Preview build: sign-in and grading run on the server. MFA is not enabled, and storage is in server memory so it does not survive a restart.

LearnDefend
Event Log Foundations
TheoryBeginner10 minWindows SecurityLog Analysis

Channels, Structure & Context

What is it?

Windows writes events into channels (Security, System, Application, and provider-specific logs). Each event has an ID (the event type), a timestamp, the user and host, and detail fields — a structured record, not free text.

Why it matters

Knowing which channel holds which evidence, and reading an event's structure, is the difference between finding the answer and scrolling blindly. Authentication lives in Security; service installs in System.

Where you see it

Event Viewer or a SIEM shows: Log (Security), Event ID (4624), Time, Account, Computer, plus fields like LogonType and Source IP.

What normal looks like

The expected events in the expected channels at expected times — logons during work hours, service events during maintenance.

What suspicious looks like

An event that shouldn't be there (a log-clear 1102), a gap where events stop, or events at an odd hour — the structure lets you spot the outlier.

How analysts investigate

Pick the right channel for your question, read each event as (ID, time, user, host, outcome), and always place one event in the context of what surrounds it.

Common beginner mistakes

  • Searching the wrong channel (Application) for authentication (Security).
  • Reading an Event ID's name without its fields (user, host, outcome).

The right channel, read in full

  Channels:  Security (logons, privilege)  System (services)  Application
  Event 4624 (Security):
    Time 02:14  Account j.rai  Computer FIN-07
    LogonType 3 (network)  Source 203.0.113.66  Result success
  read ID + time + who + where + outcome — never the ID name alone
Each event is a structured record in a channel; read ID, time, user, host and outcome together.

Quick check

Where do Windows authentication events live?

A quick self-check — it doesn't affect your XP or progress.

Sign in to save your progress on the server.