A Security Operations Center (SOC) engineering team is designing an enterprise SIEM processing architecture to handle unstructured log streams from hybrid cloud applications, perimeter firewalls, and endpoint agents. In what order should the log processing pipeline execute these stages from initial log retrieval to automated response handling?
- 1Log Ingestion: Collecting raw log payloads from heterogeneous forwarders, agents, and API streams at the central log collector.
- 2Parsing and Normalization: Breaking down raw string payloads into key-value pairs and mapping disparate vendor attributes to a unified log schema (e.g., OCSF).
- 3Contextual Enrichment: Appending threat intelligence indicators, geolocation data, and asset criticality metadata to normalized event records.
- 4Cross-Source Correlation: Evaluating multi-source normalized events against behavioral rule logic and time-window thresholds to identify multi-stage attack patterns.
- 5Alerting and Orchestration: Triggering high-priority security notifications and executing automated SOAR playbooks based on validated incident thresholds.
Answer
The correct sequence of the SIEM log processing pipeline is: Log Ingestion, Parsing and Normalization, Contextual Enrichment, Cross-Source Correlation, and Alerting and Orchestration.
The standard SIEM data pipeline processes incoming events sequentially: first ingesting raw log data, parsing it into a normalized schema, enriching the normalized fields with context (such as threat intelligence and asset metadata), correlating the enriched events across sources using defined rules, and finally alerting analysts or triggering SOAR automation.
Step-by-Step Solution
Key Concept
SIEM Log Processing Pipeline Sequence