ExamRange

CND (312-38) Network Defense Simulation

In this module, you will analyze log retention configurations and event buffer management. You will learn how systems handle massive log ingestion during an active attack and how to prevent the loss of critical forensic data.

01. Network Scenario

A critical Domain Controller (10.0.10.5) is currently being targeted by a distributed password spraying attack. The attack is generating thousands of failed authentication events (Event ID 4625) per minute.

As a Network Security Analyst, you attempt to trace the origin of the attack to its earliest timestamp. However, you discover that the earliest logs from the start of the attack are missing from the local event viewer, despite the SIEM alerting you just 15 minutes ago. You review the local event log policy to understand how the system is managing its log buffer under this heavy load.

Target System
DC-01 (10.0.10.5)
Log Source
Windows Security Event Log

02. Traffic & Logs

[WARN] SIEM Forwarder - Missing sequence numbers detected in agent payload.
> Get-EventLog -LogName Security | Measure-Object
Count : 41,943

> wevtutil gl Security
name: Security
enabled: true
type: Admin
owningPublisher: ""
isolation: Custom
channelAccess: O:BAG:SYD:(A;;0xf0005;;;SY)(A;;0x5;;;BA)(A;;0x1;;;S-1-5-32-573)
logging:
  logFileName: %SystemRoot%\System32\Winevt\Logs\Security.evtx
  maxSize: 20971520 // 20MB limit reached
  retention: false
  autoBackup: false
# System Behavior: "Overwrite events as needed (oldest events first)" is ACTIVE.

03. Question

In ______ method, event logs are arranged in the form of a circular buffer.