Security Operations: Logging, Monitoring, SIEM and Threat Intelligence
Security operations is the ongoing work of watching an organization's systems for signs of attack and acting on what you find. It rests on logging and monitoring: systems record events in logs, a SIEM (Security Information and Event Management) platform aggregates and correlates those logs from across the environment, and analysts in a Security Operations Center (SOC) triage the resulting alerts by severity and impact. To interpret what they see, defenders study threat actors, from nation-state groups to script kiddies, and their motivations, such as money, espionage, ideology, or notoriety. Cyber threat intelligence (CTI) turns raw data about those adversaries into actionable knowledge, and frameworks like MITRE ATT&CK and the Cyber Kill Chain give teams a shared language for describing attacker behavior. For the ISC2 CC exam, you need to recognize each of these pieces, know what a SIEM does, and match threat actors to their typical motivations.
- Explain why logging and monitoring are essential to detecting security events
- Describe what a SIEM does: aggregation, normalization, correlation, and alerting
- Triage security events by prioritizing on severity and business impact
- Identify common threat actor types and match each to its typical motivation
- Distinguish strategic, operational, and tactical cyber threat intelligence
- Recognize the purpose of MITRE ATT&CK and the Cyber Kill Chain
Why logging and monitoring matter
A log is a record of events that happened on a system: who logged in and when, which files were accessed, what network connections were opened, which processes ran, and what errors occurred. Almost every component in a modern environment produces logs, including servers, workstations, firewalls, routers, applications, databases, cloud services, and identity systems. Individually, each entry is a small fact. Together, logs are the organization's memory of what actually happened.
Monitoring is the act of reviewing that record continuously rather than only after something goes wrong. Without monitoring, an attacker can operate inside a network for weeks or months before anyone notices, because nothing is watching for the signs. With monitoring, unusual activity such as a login at 3 a.m. from an unfamiliar country, a sudden spike in outbound traffic, or repeated failed authentication attempts can be spotted while there is still time to respond.
Logs also serve purposes beyond detection. They support accountability, because actions can be traced back to specific accounts. They support troubleshooting, because administrators can reconstruct what a system did before it failed. They support compliance, because many laws and standards require organizations to keep and review security logs. And after an incident, logs become evidence that investigators use to determine scope and root cause.
For logs to be useful they must be protected. Attackers commonly try to delete or alter logs to cover their tracks, so good practice sends copies to a separate, centrally managed store that ordinary system administrators and attackers on a compromised host cannot modify. Time synchronization across systems matters too: if clocks disagree, events cannot be lined up into an accurate timeline.
Centralized logging and the SIEM
Reading logs machine by machine does not scale. A mid-sized organization can generate millions of log entries per day, spread across hundreds of devices in different formats. Centralized logging solves this by forwarding logs from every source to one place, where they can be stored securely, retained for a defined period, and searched together.
The tool that sits at the center of this is the SIEM, short for Security Information and Event Management. A SIEM performs four core jobs:
- Aggregation: it collects log and event data from many different sources across the environment into a single platform.
- Normalization: it translates different vendor log formats into a common structure so events from a firewall and a Windows server can be compared side by side.
- Correlation: it applies rules and analytics to connect related events from different systems, revealing patterns that no single log would show.
- Alerting: when a rule matches, it raises an alert for a human analyst to investigate, and it provides dashboards and reports for ongoing visibility.
A SIEM does not stop attacks by itself. It is a detection and visibility tool: it turns scattered raw data into prioritized signals that people can act on. The SIEM is typically operated by the Security Operations Center, or SOC, the team (in-house or outsourced) responsible for monitoring alerts around the clock, investigating suspicious activity, and escalating confirmed incidents to the incident response process.
On the exam, if a question asks which tool collects and correlates security logs from across the enterprise and generates alerts, the answer is the SIEM.
Security event triage in the SOC
A SIEM in a busy environment raises far more alerts than any team can fully investigate. Triage is the discipline of deciding, quickly and consistently, which alerts to work first. The word comes from emergency medicine, and the idea is the same: attend to the most serious cases before the minor ones.
Triage decisions rest on two main questions. First, how severe is the event: does it suggest a confirmed compromise, or just unusual but explainable behavior? Second, what is the potential impact: which asset is involved, how sensitive is the data on it, and how critical is it to the business? A malware alert on a server holding customer financial records outranks the same alert on an isolated test machine, even though the technical signature is identical. Prioritization by severity and impact ensures that limited analyst time goes where the risk is greatest.
To make triage repeatable, SOCs build incident use cases: predefined descriptions of the situations they care about, such as ransomware behavior, brute-force login attempts, data exfiltration, or malware on a critical server. Each use case defines what data sources feed it, what conditions trigger an alert, what priority it receives, and what the analyst should do next. Use cases turn monitoring from an open-ended watch into a set of specific, tested detections tied to real threats the organization faces.
The outcome of triage is a decision: dismiss the alert as a false positive, resolve it as a benign event, or escalate it as a possible incident for deeper investigation and response.
Correlation: connecting events into a picture
Correlation means linking related events, often from different systems, to see the real story behind them. Single events are usually ambiguous. One failed login is nothing. A new user account is routine. An outbound file transfer happens all day long. Correlation asks whether these small facts, viewed together, form a pattern that matters.
Consider a concrete scenario. At 02:10, the VPN log shows fifty failed login attempts against the account of a finance employee, followed by one success from an IP address in a country where the company has no staff. At 02:25, the domain controller logs show that same account creating a new administrator account. At 02:40, the firewall records a large encrypted upload from a finance file server to an unknown external host. Each event, alone, might be triaged as low priority. Correlated into one timeline, they describe a credential-stuffing attack, privilege escalation, and data exfiltration in progress, which is a critical incident demanding immediate response.
Correlation also works in the other direction: it reduces false positives. A false positive is an alert that fires when nothing malicious actually happened, and high false-positive volume is the enemy of a SOC, because it buries real attacks in noise and causes alert fatigue in analysts. By requiring multiple independent signals before raising a high-priority alert, correlation rules filter out the one-off anomalies that have innocent explanations, so the alerts that do fire are far more likely to be real.
This is why the SIEM's correlation capability, not just its storage capacity, is what makes centralized logging genuinely useful for detection.
Threat actors and their motivations
A threat actor is an individual or group that carries out, or intends to carry out, harmful activity against systems and data. Knowing who might attack you, and why, shapes what you monitor for and how you prioritize defenses. The CC exam expects you to recognize the common types and match each to its typical motivation.
| Threat actor | Who they are | Typical motivation |
|---|---|---|
| Nation-state / APT | Government-sponsored groups with deep funding and skill, often called advanced persistent threats because they stay hidden in networks for long periods | Espionage, geopolitical advantage, sabotage of critical infrastructure |
| Organized crime | Professional criminal groups running ransomware, fraud, and data-theft operations as a business | Financial gain |
| Hacktivist | Individuals or collectives attacking targets to promote a political or social cause | Ideology, protest, drawing attention to a cause |
| Insider | An employee, contractor, or partner with legitimate access, acting maliciously or negligently | Revenge, financial gain, coercion, or simple carelessness |
| Script kiddie | An unskilled attacker who runs tools and exploits written by others without understanding them | Notoriety, curiosity, thrill |
Two nuances are worth remembering. First, insiders are especially dangerous not because they are the most skilled, but because they already have authorized access, so many perimeter defenses never see them. Second, an APT is defined by persistence and stealth: the goal is long-term, undetected presence, usually for espionage, rather than a quick smash-and-grab.
Exam questions often describe behavior and ask you to name the actor. Well-funded, patient, targeting government secrets points to a nation-state APT. Demanding ransom points to organized crime. Defacing a website over a policy dispute points to a hacktivist.
Cyber threat intelligence (CTI)
Cyber threat intelligence is the practice of collecting data about adversaries and their methods, analyzing it in the context of your own organization, and turning it into actionable knowledge that improves decisions. The key word is actionable: a raw feed of ten thousand malicious IP addresses is data; the conclusion that a ransomware group is actively targeting your industry through phishing, and that you should tighten email defenses and watch for specific indicators, is intelligence.
CTI is commonly described at three levels, which differ in audience and time horizon:
| Level | Audience | What it answers | Example |
|---|---|---|---|
| Strategic | Executives and leadership | Broad trends and risk over months to years: who threatens us and why | A briefing on ransomware trends affecting the healthcare sector |
| Operational | Security managers and IR teams | Specific campaigns and adversary behavior: how particular groups attack | A report on a phishing campaign currently targeting your industry and the techniques it uses |
| Tactical | SOC analysts and defensive tools | Immediate technical detail: what to detect and block right now | Indicators of compromise such as malicious file hashes, domains, and IP addresses loaded into the SIEM |
Intelligence comes from many sources: open-source reporting, commercial feeds, government advisories, and information-sharing communities where organizations in the same sector exchange what they are seeing. Inside the SOC, tactical intelligence feeds detection directly, because indicators of compromise become SIEM correlation rules and blocklists, while operational and strategic intelligence guide which use cases to build and where to invest.
For the exam, remember the direction of the process: CTI transforms data about threats into knowledge you can act on, and the three levels are distinguished by who consumes them and how immediate they are.
Threat frameworks: MITRE ATT&CK and the Cyber Kill Chain
Frameworks give defenders a shared, structured vocabulary for describing how attacks unfold. The CC exam tests these at recognition depth: you need to know what each framework is and what it organizes, not memorize its full contents.
MITRE ATT&CK is a publicly available knowledge base of real-world adversary behavior. It is organized as a matrix of tactics and techniques. A tactic is the attacker's goal at a stage of the operation, the why, such as initial access, privilege escalation, or exfiltration. A technique is a specific method used to achieve that goal, the how, such as phishing to gain initial access or credential dumping to escalate privileges. Security teams use ATT&CK to describe incidents precisely, to check which techniques their monitoring can detect, and to map threat intelligence about specific adversary groups to concrete defenses.
The Cyber Kill Chain, developed by Lockheed Martin, models an intrusion as a linear sequence of stages the attacker must complete:
- Reconnaissance: researching and selecting the target
- Weaponization: preparing the malicious payload
- Delivery: transmitting it to the victim, for example by phishing email
- Exploitation: triggering a vulnerability to run attacker code
- Installation: establishing persistent access, such as installing malware
- Command and control: opening a channel for remote control
- Actions on objectives: achieving the goal, such as stealing or destroying data
The defensive insight of the kill chain is that breaking any single link stops the attack: blocking the phishing email at delivery, or the malware at installation, defeats the whole chain. In practice, ATT&CK offers finer-grained, behavior-level detail, while the kill chain offers a simple end-to-end narrative; SOCs use both to classify what they observe and find gaps in their detection coverage.
Tip. The CC exam tests this sub-domain with definition-matching and scenario questions at recognition depth. Expect to identify the SIEM as the tool that aggregates and correlates logs and generates alerts, and the SOC as the team that monitors them. Scenario stems describe an attacker's behavior or motive and ask you to name the threat actor: well-funded and espionage-driven signals nation-state/APT, ransom demands signal organized crime, cause-driven defacement signals hacktivist. Trigger words include correlation, false positive, prioritization by impact, actionable intelligence, tactics and techniques (ATT&CK), and the ordered stages of the Cyber Kill Chain.
- Logs are the record of system events; monitoring means reviewing them continuously, not just after a breach.
- A SIEM aggregates, normalizes, and correlates logs from across the environment and raises alerts; the SOC operates it.
- Triage prioritizes security events by severity and business impact so analysts work the riskiest alerts first.
- Correlation links related events from different systems into one picture and reduces false positives.
- Match actors to motives: nation-state/APT = espionage, organized crime = money, hacktivist = ideology, insider = access abuse, script kiddie = notoriety.
- CTI turns threat data into actionable knowledge at strategic (executives), operational (managers), and tactical (SOC analysts) levels.
- MITRE ATT&CK catalogs adversary tactics (why) and techniques (how); the Cyber Kill Chain is a 7-stage attack sequence, and breaking one link stops the attack.
Frequently asked questions
What does a SIEM do in security operations?
A SIEM (Security Information and Event Management) platform collects log and event data from many sources across an organization, normalizes it into a common format, correlates related events using rules and analytics, and generates alerts for analysts to investigate. It provides centralized visibility and detection; it does not by itself block attacks.
What is the difference between a SOC and a SIEM?
The SOC (Security Operations Center) is the team of people who monitor, triage, and investigate security events, while the SIEM is the primary software tool that team uses to aggregate and correlate logs and raise alerts. In short, the SOC is the who and the SIEM is the what.
What are the main types of threat actors and their motivations?
Common threat actor types are nation-state or APT groups motivated by espionage and geopolitical goals, organized crime motivated by financial gain, hacktivists motivated by ideology or protest, insiders who misuse legitimate access out of revenge, money, or negligence, and script kiddies who run others' tools for notoriety or thrills.
What is cyber threat intelligence and why does it matter?
Cyber threat intelligence (CTI) is the process of turning data about adversaries and their methods into actionable knowledge. It matters because it lets defenders anticipate likely attacks rather than only react: strategic CTI informs leadership decisions, operational CTI describes specific campaigns, and tactical CTI supplies indicators like malicious IPs and hashes that feed directly into detection tools.
What is the difference between MITRE ATT&CK and the Cyber Kill Chain?
MITRE ATT&CK is a detailed knowledge base of real-world adversary tactics (goals) and techniques (methods), used to describe and detect specific attacker behaviors. The Cyber Kill Chain is a simpler linear model of seven attack stages from reconnaissance to actions on objectives, built on the idea that disrupting any single stage stops the intrusion.
Why is event correlation important for reducing false positives?
A single event, like one failed login, is usually ambiguous and generates noisy alerts if acted on alone. Correlation requires multiple related signals, such as failed logins followed by an unusual admin account creation and a large outbound transfer, before raising a high-priority alert, so the alerts that fire are far more likely to represent real attacks.
Sign up free to mark lessons complete, bookmark topics and track your exam readiness.