An enterprise Security Information and Event Management (SIEM) pipeline is being configured to ingest, analyze, and respond to authentication anomalies across a hybrid environment. Place the following stages of the SIEM log processing pipeline in the correct sequential order from initial endpoint activity to final incident response.
- 1Telemetry Collection: Raw syslog and Windows Event Logs (e.g., Event ID 4624) are generated by source hosts and forwarded to the SIEM log collector.
- 2Parsing and Extraction: Key-value pairs such as source IP addresses, account names, and status codes are extracted from unstructured log strings.
- 3Data Normalization: Extracted field labels are mapped to a standardized schema taxonomy (e.g., Open Cybersecurity Schema Framework) across disparate vendor logs.
- 4Event Correlation: The SIEM engine evaluates normalized events against temporal threshold rules and detection logic to identify complex attack patterns.
- 5Alerting and Orchestration: An automated security incident ticket is opened, and a SOAR workflow is executed to isolate affected hosts.
Answer
The correct sequential order of stages in a SIEM log processing pipeline is: (1) Telemetry Collection, (2) Parsing and Extraction, (3) Data Normalization, (4) Event Correlation, and (5) Alerting and Orchestration.
The correct sequence mirrors the standard data lifecycle within a SIEM pipeline: Telemetry Collection gathers raw logs; Parsing extracts specific variables from text; Normalization standardizes field names across multi-vendor log sources; Correlation applies stateful detection logic across normalized events; and Alerting/Orchestration triggers notifications and automated response playbooks.
Step-by-Step Solution
Key Concept
SIEM Log Processing Pipeline