Skip to content

SOC Tooling and the SIEM

A Security Operations Centre depends on a coordinated stack of tools centred on a Security Information and Event Management platform that collects, normalises, and correlates log data from across the enterprise. Supporting tools such as SOAR, EDR, threat intelligence platforms, and case-management systems extend the SIEM into a pipeline that drives faster detection and structured response.

Last updated:

Share

A Security Operations Centre is a team and the technical infrastructure it uses to monitor, detect, and respond to security incidents around the clock. At the core of that infrastructure is the Security Information and Event Management (SIEM) platform, which collects log and event data from firewalls, servers, endpoints, cloud services, and applications, normalises the data into a consistent schema, and applies correlation rules to surface alerts. Surrounding the SIEM are specialised tools that extend its reach: Security Orchestration, Automation, and Response (SOAR) platforms that automate repeatable triage steps, Endpoint Detection and Response (EDR) agents that record detailed host-level telemetry, Threat Intelligence Platforms (TIPs) that enrich alerts with external context, and case-management systems that create a structured, auditable record of every incident. Together these tools form the detection-to-response pipeline that determines an organisation's mean time to detect (MTTD) and mean time to respond (MTTR).

The SIEM model grew from the earlier separation of security information management (SIM) systems, which archived and searched logs, and security event management (SEM) systems, which correlated real-time events. Vendors merged the two functions in the mid-2000s, and the term SIEM came into common use. Early platforms were primarily compliance tools: they collected logs to satisfy audit requirements under PCI DSS, HIPAA, or ISO 27001. Modern SIEMs have shifted toward detection engineering, with rules and detection logic built from threat-intelligence frameworks such as MITRE ATT&CK. The platform is now expected to support both the compliance use case and active threat hunting.

No single tool in the stack replaces the others. A SIEM without good EDR telemetry has incomplete endpoint visibility. A SOAR without a well-tuned SIEM is automating noise. An EDR without a SIEM feeding correlated context leaves analysts reading isolated host timelines rather than enterprise-wide attack paths. Understanding how the tools connect, what each one produces, and where each has limits, is the foundation for working effectively in an IR or SOC role.

By the end of this topic you will be able to:

  • Explain the core functions of a SIEM, including log ingestion, normalisation, correlation, and alerting, and identify its main limitations.
  • Describe how SOAR platforms connect to a SIEM and what types of tasks they automate in a tier-1 analyst workflow.
  • Distinguish EDR from traditional endpoint security and explain the telemetry an EDR provides for incident investigation.
  • Explain what a Threat Intelligence Platform does, how it ingests and scores indicators, and how it enriches SIEM alerts.
  • Describe the role of case-management systems in structured incident response and identify what records they must preserve for post-incident review.
Key terms
SIEM (Security Information and Event Management)
A platform that centralises log and event data from across an organisation, normalises it, applies detection rules, and generates alerts. Serves both compliance (log retention, audit) and operational (real-time detection, threat hunting) functions.
SOAR (Security Orchestration, Automation, and Response)
A platform that receives alerts from the SIEM and other sources, executes automated playbooks to enrich and triage them, and integrates with downstream tools to take containment actions or open case tickets without manual analyst intervention.
EDR (Endpoint Detection and Response)
An agent-based technology that records detailed endpoint telemetry (process trees, file writes, network connections, registry changes) and stores it for retrospective investigation. Enables live response, memory acquisition, and lateral movement tracing.
Threat Intelligence Platform (TIP)
A system that ingests indicator feeds from external providers and internal sources, deduplicates and scores them, and exports curated indicators of compromise to the SIEM and other tools for alert enrichment.
MTTD / MTTR
Mean Time to Detect and Mean Time to Respond: the two primary operational KPIs for a SOC. MTTD measures the gap between a compromise occurring and an alert firing; MTTR measures the gap between alert and containment. Both are shortened by tight tool integration.
STIX / TAXII
Structured Threat Information eXpression (STIX) is a standardised language for describing threat intelligence objects. Trusted Automated eXchange of Intelligence Information (TAXII) is the transport protocol used to share STIX data between platforms, including from a TIP to a SIEM.

The SIEM: aggregation, normalisation, and correlation

A SIEM receives event data from multiple sources: syslog from network devices and servers, Windows Event Log forwarded via agents, cloud provider audit trails from AWS CloudTrail or Azure Monitor, web proxy logs, email gateway logs, and authentication records from identity providers. The first processing step is normalisation: mapping each source's proprietary field names and values to a common schema so that a failed logon from a Linux server and a failed logon from an Active Directory domain controller can be queried with the same search syntax.

Correlation rules define the detection logic. A simple rule might fire when the same source IP generates more than twenty failed SSH logons in sixty seconds against the same host. A more complex rule might correlate a failed logon burst, followed by a successful logon from the same source, followed by an outbound connection to an IP with a low reputation score, all within a fifteen-minute window, into a single high-confidence alert. Writing and maintaining those rules is detection engineering, and it requires ongoing tuning to balance sensitivity against false-positive rate.

Modern SIEM platforms also support user and entity behaviour analytics (UEBA), which builds statistical baselines for individual users and devices and alerts when behaviour deviates from the baseline. A user who downloads fifty megabytes of data every day represents no anomaly; the same user downloading ten gigabytes at 2 a.m. on a Sunday does. UEBA catches insider threats and compromised credentials that rule-based detection misses, but it requires weeks of baseline data before it produces useful output.

SOAR: automating tier-1 response

A SOAR platform sits between the SIEM and the analyst. When the SIEM fires an alert, the SOAR receives it via webhook or API and executes a playbook: a defined sequence of automated steps. For a phishing alert, the playbook might extract URLs and file hashes from the email, query a threat intelligence feed for each, check whether any recipient clicked a link, look up the sending domain's age and registration details, and assemble all results into a structured case before a human analyst sees it. The analyst then makes a containment decision on a pre-enriched case rather than starting the enrichment from scratch.

FunctionSIEMSOAR
Primary roleCollect, normalise, correlate, alertEnrich, triage, automate response actions
InputRaw log and event dataAlerts from SIEM and other sources
OutputAlerts and dashboardsEnriched cases, automated containment actions
Human interactionAnalysts query and investigateAnalysts review enriched cases and approve escalations
Key metric improvedMTTDMTTR

SOAR platforms also handle notification and escalation: paging the on-call analyst, opening a ticket in a service-desk system, or sending a Slack message to the IR channel. This removes the manual coordination step that delays response. In high-volume environments, SOAR can fully close low-severity alert types automatically once confidence thresholds are met, freeing analysts for cases that require judgment.

The value of a SOAR depends on the quality of its integrations. A SOAR that cannot reach the firewall API to block an IP, or cannot write to the ITSM system to create a ticket, is limited to enrichment only. Organisations deploying SOAR need to map their tool inventory before selecting a platform and verify that the necessary API connectors exist or can be built.

EDR: endpoint telemetry and live response

Endpoint Detection and Response tools deploy a lightweight agent on each managed host. The agent records a continuous stream of telemetry: every process that starts, the parent process that spawned it, the command-line arguments, every file written or deleted, every network connection established, and every registry key modified on Windows hosts. This telemetry is streamed to a central data store where it is indexed and retained, typically for thirty to ninety days.

During an investigation, an analyst can query the EDR platform across all endpoints simultaneously. A search for the hash of a malicious binary tells the analyst within seconds how many hosts have seen that file, when it first appeared, which process dropped it, and what network connections it made. This enterprise-wide query capability replaces the slow process of manually imaging and examining individual hosts.

EDR platforms also provide live response: a remote shell into a running endpoint that allows the analyst to examine running processes, extract files, collect volatile memory, or terminate a process, all without physically accessing the machine. This is particularly important in geographically distributed organisations where the affected endpoint may be in another country. The forensic readiness considerations for live response, including chain of custody for collected artefacts and the order of volatility, apply equally to EDR-based collection and to traditional forensic acquisition.

Threat Intelligence Platforms and indicator enrichment

A Threat Intelligence Platform ingests indicators of compromise (IOCs) from multiple feeds: commercial providers such as Recorded Future or Mandiant, government-operated sharing groups such as the US Information Sharing and Analysis Centres (ISACs), the UK National Cyber Security Centre (NCSC) feeds, the EU ENISA annual threat reports, and community sources such as AlienVault OTX. Each indicator, an IP address, domain, file hash, URL, or email address, carries metadata: the feed that reported it, when it was first seen, when it was last confirmed active, and what threat actors or malware families it is associated with.

The TIP deduplicates indicators across feeds, applies a confidence score based on how many independent sources reported it and how recently, and exports the curated result to the SIEM as lookup tables or via STIX/TAXII. When a SIEM correlation rule fires, the alert is automatically enriched with any matching TIP data: if the destination IP of an outbound connection is in the TIP as a known command-and-control server for a specific ransomware family, that context appears in the alert immediately, reducing the time an analyst spends on initial triage.

TIPs also support strategic intelligence functions: tracking threat actor campaigns, mapping tactics to MITRE ATT&CK techniques, and informing detection rule development. An organisation that has visibility into which techniques a threat actor targeting its sector is currently using can prioritise the detection rules that cover those techniques. This is the link between strategic threat intelligence and operational detection engineering.

Case management: the audit trail of an incident

A case-management system (also called a ticketing or incident-tracking system) provides the persistent record of an incident from first alert to post-incident closure. In some organisations this is a general-purpose ITSM platform such as ServiceNow or Jira. In others it is a SOC-specific product such as TheHive, which is purpose-built for security case management with native integration points for SIEM alerts and SOAR actions. Purpose-built tools typically model incidents as collections of observables (IP addresses, hostnames, file hashes), tasks assigned to analysts, and a timeline of analyst actions.

The case record must capture: the initial alert that opened the case, every action the analyst took and when, every tool output that contributed to the investigation, the containment and eradication steps, and the final determination of root cause and scope. This record serves three purposes. First, it enables handover between analysts without information loss when a shift changes during an active incident. Second, it provides the material for the post-incident review and lessons-learned process. Third, for incidents that cross a legal or regulatory reporting threshold, the case record is the primary artefact supporting the required notification.

Regulatory reporting requirements vary by jurisdiction. In the European Union, the NIS2 Directive requires operators of essential services to notify the relevant computer security incident response team within 24 hours of becoming aware of a significant incident. In the United States, the SEC requires public companies to disclose material cybersecurity incidents within four business days of determining materiality. India's CERT-In rules under the Information Technology Act 2000 mandate reporting of specified incidents within six hours. The UK's ICO expects breach notification under UK GDPR within 72 hours. In each case, the case-management record is what makes those notifications accurate and defensible.

How the tools integrate: reducing MTTD and MTTR

The tools work as a pipeline. The SIEM collects raw data from network, endpoint, cloud, and identity sources. EDR agents on endpoints contribute process and file telemetry that network logs cannot provide. The TIP enriches SIEM correlation rules with current indicator data. When a correlation rule fires, the alert passes to SOAR, which runs an automated playbook: enriching the alert with TIP lookups, querying the EDR for process context on the affected host, checking the user's recent authentication history from the identity provider, and opening a case in the case-management system with all those results pre-populated. The analyst receives a page and opens a case that already contains the first ten minutes of investigation work.

This integration reduces MTTD by ensuring that every relevant data source contributes to correlation, not just the sources the analyst happens to check manually. It reduces MTTR by removing the manual enrichment step from the analyst's workload and ensuring that containment actions such as host isolation or IP blocking can be triggered from the SOAR playbook without the analyst having to log into a separate console.

The integration also creates dependencies. If the SOAR cannot reach the EDR API, automated playbooks degrade to partial enrichment. If the TIP feed is stale, SIEM correlation misses new indicators. Organisations that rely heavily on automation must monitor the health of the integration layer itself as a SOC operational requirement. The scoping and confirming phase of an active investigation depends on the accuracy of the data these tools provide.

Check your understanding
Question 1 of 4· 0 answered

A SIEM alert fires every time any user logs on outside business hours. After three months, analysts have stopped reviewing these alerts entirely. What is the primary problem and what is the correct fix?

Key Takeaways

  • The SIEM is the aggregation and correlation centre of the SOC: it normalises log data from heterogeneous sources, applies detection rules, and surfaces alerts, but its output quality depends entirely on the precision of its detection content.
  • SOAR reduces MTTR by automating the enrichment and first-response steps that would otherwise consume a tier-1 analyst's time, but its value is bounded by the quality and coverage of its API integrations with other tools.
  • EDR provides process-level endpoint telemetry and live response capabilities that network logs and traditional antivirus cannot supply, enabling both retrospective investigation and rapid enterprise-wide scope assessment.
  • A Threat Intelligence Platform curates and scores external indicators, exports them to the SIEM via STIX/TAXII, and ensures that raw alerts are automatically enriched with threat actor context before an analyst begins triage.
  • Case-management systems provide the auditable record that enables shift handovers, post-incident review, and regulatory breach notification under frameworks including the EU NIS2 Directive, SEC disclosure rules, UK GDPR, and India's CERT-In reporting requirements.
What is a SIEM and what does it do in a SOC?
A Security Information and Event Management (SIEM) platform collects log and event data from across an organisation's infrastructure, normalises it into a common format, and applies correlation rules to identify patterns that may indicate a security incident. In a SOC it acts as the central aggregation point: analysts use it to search historical data, run real-time alerts, and build the timeline of an incident.
How does SOAR differ from a SIEM?
A SIEM aggregates and correlates data to generate alerts. A Security Orchestration, Automation, and Response (SOAR) platform takes those alerts and automates the first-response actions: enriching the alert with threat intelligence, isolating a host, creating a case ticket, and notifying the on-call analyst. SOAR reduces the manual workload on tier-1 analysts and ensures consistent handling of high-volume, repetitive alert types.
What does an EDR product do that a traditional antivirus does not?
Endpoint Detection and Response (EDR) tools continuously record process execution, file writes, registry changes, and network connections on each endpoint, storing that telemetry in a searchable data store. Traditional antivirus matches known file signatures at scan time. EDR enables retrospective investigation of an endpoint's behaviour, lateral movement tracing, and live response capabilities such as remote shell access and memory acquisition, which antivirus products do not provide.
What is a threat intelligence platform and how does it feed the SIEM?
A Threat Intelligence Platform (TIP) ingests indicator feeds from commercial providers, government sharing groups such as ISACs, and internal sources. It deduplicates, scores, and contextualises indicators of compromise such as malicious IP addresses, domains, and file hashes. The TIP exports curated indicators to the SIEM as lookup tables or via STIX/TAXII feeds, enabling the SIEM to enrich raw log data and trigger alerts when a known-bad indicator appears.
Why is case management important in incident response?
A case-management system provides a persistent, auditable record of every action taken during an incident: timeline of events, analyst notes, evidence items, containment decisions, and communications. Without it, institutional knowledge lives in chat messages and individual analysts' notes, making handovers error-prone and post-incident review difficult. Case management also produces the artifact required for legal and regulatory reporting after a breach.

Test yourself on Incident Response and Management with free, timed mocks.

Practice Incident Response and Management questions

Found this useful? Pass it along.

Share

Spotted an error in this page? Report a correction or read our editorial standards.

Your journey to becoming a forensic professional starts here.

Practice with mock tests, learn from structured notes, and get your questions answered by a global forensic community, all in one place.