SY0-701Chapter 184 of 212Objective 4.9

SOC Tool Stack Overview

This chapter provides a comprehensive overview of the SOC tool stack, covering the essential tools and technologies used in modern Security Operations Centers. For the SY0-701 exam, understanding the SOC tool stack is critical for Domain 4.0 (Security Operations), specifically Objective 4.9: 'Given a scenario, use the appropriate tool to assess organizational security.' This chapter will explain the purpose, function, and typical use cases for each major tool category, helping you answer scenario-based questions on the exam.

25 min read
Intermediate
Updated May 31, 2026

The SOC as a Hospital Emergency Department

Imagine a hospital emergency department (ED) as a Security Operations Center. The ED has a triage nurse (tier 1 analyst) who quickly assesses incoming patients (alerts) based on vital signs (severity indicators) and decides who needs immediate care. The ED uses monitoring equipment like heart monitors and pulse oximeters (SIEM and IDS/IPS) that continuously track patient status (network traffic and system logs). When a patient shows abnormal vitals (potential security incident), the triage nurse escalates to a specialist doctor (tier 2 analyst) who reviews the patient’s history (log correlation) and orders diagnostic tests (deep packet analysis, endpoint forensics). If the condition is critical (major breach), a team of surgeons (tier 3 analysts and incident responders) performs life-saving procedures (containment, eradication, recovery). Just as a hospital keeps detailed patient records (case management and ticketing), the SOC documents every step in a ticketing system. The analogy works because both environments require rapid triage, specialized escalation, continuous monitoring, and thorough documentation to prevent small problems from becoming fatal.

How It Actually Works

What is the SOC Tool Stack?

The SOC (Security Operations Center) tool stack is the collection of hardware and software tools that security analysts use to monitor, detect, analyze, and respond to cybersecurity threats. The stack is layered, with each tool serving a specific function in the incident detection and response lifecycle. For SY0-701, you need to know the primary categories: SIEM (Security Information and Event Management), SOAR (Security Orchestration, Automation, and Response), IDS/IPS (Intrusion Detection/Prevention Systems), vulnerability scanners, packet capture/analysis tools, endpoint detection and response (EDR), and threat intelligence platforms.

How the Stack Works Mechanically

The SOC tool stack operates in a pipeline. First, data sources (firewalls, endpoints, servers, cloud services) generate logs and telemetry. These are sent to a SIEM, which aggregates, normalizes, and correlates the data. The SIEM applies correlation rules and alerts on suspicious patterns. Analysts receive alerts through a ticketing system or SOAR platform, which may automatically triage and enrich alerts with threat intelligence. For deeper investigation, analysts use packet capture tools (like Wireshark) or EDR tools to examine endpoints. If an incident is confirmed, SOAR playbooks automate containment actions (e.g., blocking an IP at the firewall). Throughout, vulnerability scanners provide continuous assessment of system weaknesses, and threat intelligence feeds inform detection rules.

Key Components, Variants, and Standards

SIEM: Examples include Splunk, IBM QRadar, ArcSight. SIEMs rely on syslog (RFC 5424) and other log formats. They use correlation rules (e.g., '5 failed logins in 1 minute') to generate alerts.

SOAR: Platforms like Palo Alto Cortex XSOAR, Splunk SOAR. They integrate with ticketing systems (ServiceNow, Jira) and automate responses via playbooks.

IDS/IPS: Network-based (NIDS/NIPS) like Snort, Suricata; host-based (HIDS) like OSSEC. Snort uses rules (e.g., alert tcp any any -> any 80 (msg:"Web Attack";)) to detect signatures.

Vulnerability Scanners: Nessus, Qualys, OpenVAS. They scan for CVEs (Common Vulnerabilities and Exposures) and provide risk scores (CVSS v3.1).

Packet Capture: Wireshark, tcpdump. Wireshark uses display filters like http.request to isolate traffic.

EDR: CrowdStrike Falcon, Microsoft Defender for Endpoint. They provide real-time endpoint visibility and response capabilities.

Threat Intelligence Platforms (TIP): MISP, ThreatConnect. They aggregate IOCs (indicators of compromise) such as IP addresses, domains, hashes.

How Attackers Exploit or Defenders Deploy

Attackers may try to evade the SOC tool stack by using encryption (TLS), fragmentation, or living-off-the-land techniques (using legitimate tools like PowerShell). Defenders deploy these tools in layers: network-based detection (IDS/IPS) at the perimeter, endpoint detection (EDR) on hosts, and centralized analysis (SIEM) for correlation. They also use deception technologies like honeypots to detect attackers.

Real Command/Tool Examples

tcpdump: tcpdump -i eth0 -w capture.pcap captures traffic to a file.

Wireshark: Display filter ip.addr == 10.0.0.1 isolates traffic from a specific IP.

Snort: snort -c snort.conf -i eth0 starts Snort with a custom rule set.

Nmap: nmap -sV 192.168.1.0/24 scans for open ports and service versions.

Nessus: nessuscli scan new --target 10.0.0.0/24 initiates a vulnerability scan.

Splunk: Search query index=main sourcetype=win:security EventCode=4625 finds failed logon events.

SIEM Deep Dive

A SIEM performs four key functions: log collection, normalization, correlation, and alerting. Log collection uses agents (e.g., Splunk Universal Forwarder) or syslog. Normalization converts logs to a common schema (e.g., CEF - Common Event Format). Correlation rules can be simple (e.g., threshold-based) or complex (e.g., stateful). For example, a rule might alert when a user logs in from two geographically distant IPs within 10 minutes (impossible travel). The SIEM also provides dashboards for real-time monitoring and reporting for compliance.

SOAR Deep Dive

SOAR platforms automate incident response. A typical playbook for a phishing email might: 1) Receive email alert via API, 2) Query threat intelligence for sender domain, 3) Automatically delete the email from all inboxes, 4) Block the sender’s domain at the email gateway, 5) Create a ticket in ServiceNow. SOAR reduces mean time to respond (MTTR) from hours to minutes.

IDS/IPS Deep Dive

IDS (Intrusion Detection System) monitors and alerts on malicious traffic; IPS (Intrusion Prevention System) actively blocks it. Detection methods include: signature-based (matches known patterns), anomaly-based (baselines normal traffic and flags deviations), and behavior-based (analyzes sequences of actions). Snort rules have a header (action, protocol, source/dest IPs, ports) and options (content, msg, sid). For example: alert tcp $EXTERNAL_NET any -> $HOME_NET 80 (msg:"SQL Injection Attempt"; content:"select"; nocase; sid:1000001;).

Vulnerability Scanners Deep Dive

Vulnerability scanners identify weaknesses by comparing system configurations and software versions against a database of known vulnerabilities (e.g., NVD - National Vulnerability Database). They produce a report with each vulnerability’s CVSS score (0-10), description, and remediation. Scanners can be authenticated (using credentials for deeper checks) or unauthenticated (external view). Common findings include missing patches, weak passwords, open ports, and misconfigurations.

Packet Capture and Analysis

Packet capture tools record raw network traffic for offline analysis. Wireshark can reconstruct TCP streams and extract files. tcpdump is command-line and useful for scripting. Analysts use packet captures to confirm attacks, extract payloads, and understand network behavior. For example, a pcap showing a large number of SYN packets to many ports indicates a port scan.

Endpoint Detection and Response (EDR)

EDR tools monitor endpoint activity (processes, files, registry, network connections) and provide real-time detection and response. They use machine learning and behavioral analysis to detect unknown threats. When a suspicious process is detected, the EDR can isolate the endpoint from the network, kill the process, or roll back changes. EDR is critical for detecting advanced persistent threats (APTs) that evade network-based controls.

Threat Intelligence Platforms (TIP)

TIPs aggregate threat data from internal and external sources (e.g., AlienVault OTX, VirusTotal). They provide IOCs (IPs, domains, file hashes) that can be fed into SIEM or firewall rules. TIPs also provide context (e.g., the threat actor behind an IOC) and allow analysts to collaborate. For example, a TIP might show that a certain IP is associated with the Emotet botnet, so the SOC can block it.

Integration and Workflow

In a mature SOC, these tools are integrated. A SIEM alert triggers a SOAR playbook, which queries the TIP for enrichment, launches an EDR scan on affected endpoints, and creates a ticket. The analyst reviews the findings in a centralized dashboard. This integration reduces manual effort and speeds up response.

Exam Relevance

For SY0-701, you must know the purpose of each tool type and when to use it. Scenario questions might describe an incident and ask which tool to use (e.g., 'An analyst needs to see the contents of a suspicious packet. Which tool? Wireshark'). Also understand the difference between IDS and IPS (IDS alerts, IPS blocks), SIEM and SOAR (SIEM correlates, SOAR automates), and vulnerability scanning vs. penetration testing (scanning finds vulnerabilities, testing exploits them).

Walk-Through

1

Alert Generation by SIEM

The SOC tool stack begins with log collection. Data sources like firewalls, servers, and endpoints send logs (via syslog or agents) to the SIEM. The SIEM normalizes the logs into a common format and applies correlation rules. For example, a rule might trigger an alert when a single IP address triggers 10 failed login attempts on multiple systems within 5 minutes. The SIEM then generates an alert with severity (e.g., high, medium, low) and stores it in a database. The analyst sees the alert in the SIEM dashboard or via a ticketing system integration.

2

Triage and Enrichment

A tier 1 analyst reviews the alert in the ticketing system or SOAR platform. They check the alert details: source IP, destination, timestamp, and affected systems. The analyst may use the SOAR to automatically enrich the alert with threat intelligence (e.g., query VirusTotal for the IP’s reputation) or pull additional logs from the SIEM. If the alert appears benign (e.g., false positive due to a misconfigured rule), they close the ticket with a note. If suspicious, they escalate to tier 2.

3

Deep Investigation with Tools

A tier 2 analyst performs deeper analysis. They use packet capture tools (Wireshark, tcpdump) to examine network traffic related to the alert. For example, if the alert indicates a web attack, they filter traffic to the victim server and inspect HTTP requests. They also use EDR tools to check the affected endpoint for malicious processes or files. The analyst might run a vulnerability scanner on the target system to see if known vulnerabilities match the attack vector. They correlate findings from multiple tools to confirm the incident.

4

Containment via SOAR

Once the incident is confirmed, the analyst initiates containment. Using the SOAR platform, they execute a playbook that automatically blocks the attacker’s IP at the firewall, isolates the infected endpoint from the network (via EDR), and disables compromised user accounts. The SOAR may also send notifications to stakeholders. The analyst monitors the containment actions to ensure they are successful. The SOAR logs all actions for audit purposes.

5

Eradication and Recovery

After containment, the team eradicates the threat. This may involve removing malware using EDR (e.g., quarantining files), patching vulnerabilities (using vulnerability scanner data), or rebuilding systems. The analyst uses the vulnerability scanner to verify that patches are applied. They also use the SIEM to confirm that no further malicious activity is occurring. Once eradicated, systems are restored from clean backups. The analyst documents the steps taken in the ticketing system.

What This Looks Like on the Job

Scenario 1: Phishing Campaign Detection A financial institution receives an alert from its SIEM about multiple users clicking a link in a suspicious email. The SIEM correlated logs from the email gateway (which flagged the email as phishing) and proxy logs (which showed the users visited a malicious domain). The tier 1 analyst enriches the alert using the SOAR, which queries the TIP and finds the domain is associated with a credential-stealing kit. The analyst escalates to tier 2, who uses EDR to scan the affected endpoints. They find a keylogger on one machine. The SOAR playbook automatically blocks the domain at the proxy and resets the affected users' passwords. A common mistake at this point would be to only block the domain without scanning endpoints, missing the keylogger. The correct response includes endpoint scanning and password reset.

Scenario 2: Ransomware Outbreak A hospital’s EDR alerts on a workstation showing ransomware behavior (file encryption activity). The SIEM also shows an unusual number of SMB connections from that workstation to file servers. The SOAR automatically isolates the workstation from the network and triggers a vulnerability scan on the file servers. The scan reveals an unpatched SMB vulnerability (EternalBlue). The incident response team uses the SIEM to trace the initial infection vector (a phishing email). They contain the outbreak by blocking the attacker’s C2 IP at the firewall and patching the SMB vulnerability. A common mistake is to only isolate the endpoint without checking for lateral movement, allowing the ransomware to spread to other systems. The correct response involves scanning all systems that communicated with the infected workstation.

Scenario 3: Insider Data Exfiltration A SIEM alert triggers on a user downloading a large amount of data from a database to a USB drive. The analyst uses the SOAR to query the user’s activity logs and finds they accessed sensitive customer records. The analyst uses EDR to check the endpoint for any data transfer tools (e.g., cloud upload). The SOAR playbook automatically disables the user’s account and alerts the HR department. A common mistake is to rely solely on the SIEM alert without investigating the endpoint, missing evidence of exfiltration to cloud storage. The correct response includes EDR analysis and possibly packet capture to see if data was sent over the network.

How SY0-701 Actually Tests This

SY0-701 tests your ability to select the appropriate tool for a given scenario. The objective 4.9 explicitly states: 'Given a scenario, use the appropriate tool to assess organizational security.' You must know the primary function of each tool category and when to use it.

Most common wrong answers: 1. Choosing SIEM when the question asks for packet analysis. Candidates confuse SIEM (which analyzes logs) with packet capture tools (which analyze raw traffic). The key differentiator: SIEM uses logs, packet capture uses packets. 2. Choosing a vulnerability scanner when the question is about detecting active attacks. Vulnerability scanners find weaknesses, not ongoing attacks. For active detection, use IDS/IPS or EDR. 3. Choosing IDS when the question requires blocking traffic. IDS only alerts; IPS blocks. If the scenario says 'prevent the attack,' the answer is IPS, not IDS. 4. Choosing SOAR when the question is about log correlation. SOAR automates response; SIEM performs correlation. If the scenario says 'analyze logs from multiple sources,' the answer is SIEM.

Specific terms that appear verbatim: SIEM, SOAR, IDS, IPS, EDR, vulnerability scanner, packet capture, threat intelligence feed, playbook, correlation rule, false positive, true positive, CVSS.

Common trick questions:

The question might describe a 'network-based detection system that can block traffic' – that’s an IPS, not an IDS.

'A tool that collects and correlates logs from multiple sources' – that’s SIEM, not SOAR.

'A tool that automates incident response actions' – that’s SOAR, not SIEM.

'A tool that examines endpoint processes and memory' – that’s EDR, not antivirus.

Decision rule for scenario questions: First, identify what the scenario asks – is it about detection, prevention, analysis, or response? For detection, consider SIEM (log-based) or IDS/IPS (network-based). For prevention, consider IPS or EDR (endpoint containment). For analysis, consider packet capture or EDR. For response automation, consider SOAR. Also, note if the scenario mentions logs (SIEM), packets (packet capture), endpoints (EDR), or vulnerabilities (vulnerability scanner).

Key Takeaways

SIEM aggregates and correlates logs from multiple sources; SOAR automates incident response actions.

IDS detects and alerts on malicious traffic; IPS detects and blocks malicious traffic inline.

Vulnerability scanners identify weaknesses (CVEs) but do not detect active attacks.

EDR provides real-time endpoint monitoring, detection, and response beyond traditional antivirus.

Packet capture tools (Wireshark, tcpdump) are used for deep analysis of network traffic, not real-time alerting.

Threat intelligence platforms (TIPs) aggregate IOCs (IPs, domains, hashes) to inform detection and response.

The SOC tool stack is layered: data sources → SIEM → SOAR → response, with enrichment from threat intelligence.

For SY0-701, know the primary function of each tool and when to use it based on scenario descriptions.

Easy to Mix Up

These come up on the exam all the time. Here's how to tell them apart.

SIEM

Collects and correlates logs from multiple sources

Provides real-time monitoring and alerting

Uses correlation rules to detect threats

Stores historical log data for forensics

Example: Splunk, QRadar

SOAR

Orchestrates and automates incident response

Integrates with ticketing and other tools

Runs playbooks for automated actions

Reduces manual effort and response time

Example: Cortex XSOAR, Splunk SOAR

IDS

Monitors network traffic for malicious activity

Generates alerts but does not block traffic

Often deployed out-of-band (passive)

Can be network-based (NIDS) or host-based (HIDS)

Example: Snort (in IDS mode)

IPS

Monitors and actively blocks malicious traffic

Deployed inline (active prevention)

Can drop packets or reset connections

May introduce latency

Example: Snort (in IPS mode), Palo Alto Networks

Vulnerability Scanner

Automated scanning for known vulnerabilities

Provides a list of CVEs and CVSS scores

Less intrusive, can be run frequently

Does not exploit vulnerabilities

Example: Nessus, Qualys

Penetration Testing

Manual or semi-automated exploitation of vulnerabilities

Simulates real-world attacks

More intrusive and time-consuming

Validates whether vulnerabilities can be exploited

Example: Metasploit, manual testing

Watch Out for These

Mistake

SIEM and SOAR are interchangeable terms.

Correct

SIEM (Security Information and Event Management) focuses on log collection, correlation, and alerting. SOAR (Security Orchestration, Automation, and Response) focuses on automating incident response workflows and integrating with other tools. They complement each other but serve different purposes.

Mistake

An IDS can block malicious traffic.

Correct

An IDS (Intrusion Detection System) only monitors and alerts on malicious traffic. It does not have the capability to block traffic. An IPS (Intrusion Prevention System) is placed inline and can block traffic. The exam distinguishes between detection (IDS) and prevention (IPS).

Mistake

Vulnerability scanners can detect active attacks.

Correct

Vulnerability scanners identify weaknesses (e.g., missing patches, misconfigurations) by comparing system states against a database of known vulnerabilities. They do not detect ongoing attacks. For active attack detection, use IDS/IPS, SIEM, or EDR.

Mistake

Packet capture tools like Wireshark are used for real-time alerting.

Correct

Wireshark and tcpdump are primarily for offline analysis of captured traffic. While Wireshark has some real-time capabilities, it is not designed for continuous alerting like an IDS. For real-time network monitoring, use IDS/IPS or SIEM with network sensors.

Mistake

EDR is the same as traditional antivirus.

Correct

EDR (Endpoint Detection and Response) provides advanced capabilities beyond antivirus, including behavioral analysis, threat hunting, and automated response. Antivirus typically relies on signature-based detection, while EDR uses multiple detection techniques and provides deeper visibility into endpoint activity.

Frequently Asked Questions

What is the difference between SIEM and SOAR?

SIEM (Security Information and Event Management) collects, normalizes, and correlates logs from various sources to generate alerts. It provides historical log storage and real-time monitoring. SOAR (Security Orchestration, Automation, and Response) automates incident response workflows by integrating with SIEM and other tools. SOAR runs playbooks to perform actions like blocking an IP or creating a ticket. In short, SIEM detects; SOAR responds. For the exam, if a scenario describes log correlation and alerting, choose SIEM; if it describes automated response actions, choose SOAR.

Can an IDS block traffic?

No, an IDS (Intrusion Detection System) is a passive system that monitors traffic and generates alerts when malicious activity is detected. It does not have the capability to block traffic. An IPS (Intrusion Prevention System) is an active system that can block traffic by dropping packets or resetting connections. On the exam, if the scenario says 'detect and alert,' choose IDS; if it says 'prevent or block,' choose IPS.

What is the purpose of a vulnerability scanner?

A vulnerability scanner is used to identify security weaknesses in systems, such as missing patches, misconfigurations, or known vulnerabilities (CVEs). It compares system information against a database of vulnerabilities and assigns a risk score (CVSS). It does not exploit vulnerabilities or detect active attacks. On the exam, vulnerability scanners are used for proactive assessment, not incident detection.

What is the difference between EDR and antivirus?

EDR (Endpoint Detection and Response) provides advanced endpoint monitoring, detection, and response capabilities. It uses behavioral analysis, machine learning, and threat intelligence to detect unknown threats, and allows analysts to investigate and respond (e.g., isolate endpoints, kill processes). Traditional antivirus relies primarily on signature-based detection and is less effective against new or polymorphic malware. EDR is a key tool for modern SOCs.

When should I use a packet capture tool like Wireshark?

Packet capture tools are used for deep analysis of network traffic. You would use them when you need to see the actual contents of packets, such as payload data, protocol headers, or to reconstruct a conversation. They are not used for real-time alerting or log correlation. Use Wireshark or tcpdump when investigating a specific incident where network traffic details are needed.

What is a playbook in SOAR?

A playbook is a predefined set of automated steps that a SOAR platform executes in response to a specific type of incident. For example, a phishing playbook might include steps to query threat intelligence, block the sender's domain, delete the email from inboxes, and create a ticket. Playbooks help standardize and speed up incident response. On the exam, playbooks are associated with SOAR.

What is a correlation rule in SIEM?

A correlation rule is a logical condition that the SIEM uses to detect patterns of interest across multiple log sources. For example, a rule might trigger an alert when a single user fails to log in 10 times within 5 minutes from different IP addresses. Correlation rules reduce false positives by combining events. The exam may test your understanding of how SIEMs use rules to detect attacks like brute force or impossible travel.

Terms Worth Knowing

Ready to put this to the test?

You've just covered SOC Tool Stack Overview — now see how well it sticks with free SY0-701 practice questions. Full explanations included, no account needed.

Done with this chapter?