Tutorial 4.1: Introduction to Security Monitoring and Defensive Systems
🎯 Learning Objectives
After completing this tutorial, you should be able to:
- Explain the purpose and scope of security monitoring in modern enterprise environments.
- Describe the key components of a defensive systems architecture and how they interact.
- Analyze the strengths and limitations of major security models including PDR, P²DR, and Zero Trust.
- Compare different monitoring technologies (SIEM, IDS/IPS, UEBA, EDR) and their roles.
- Evaluate the integration of threat intelligence into security monitoring workflows.
- Design a basic security monitoring architecture aligned with the defense-in-depth principle.
- Assess the relationship between security monitoring and incident response processes.
- Investigate real-world security monitoring challenges and best practices through case studies.
📖 Overview
Welcome to Unit 4: Security Systems and Models. In this first tutorial, we lay the
foundation for understanding how organizations protect their digital assets through a combination of
monitoring, detection, prevention, and response capabilities. Security monitoring and defensive systems
are the operational backbone of any cybersecurity program — they transform security policies from
abstract documents into active, resilient protections.
Modern enterprises face an ever-expanding threat landscape. Attackers have evolved from lone hackers
to sophisticated, well-funded groups using advanced persistent threat (APT) techniques. Simultaneously,
the attack surface has grown dramatically with cloud adoption, remote work, Internet of Things (IoT)
devices, and increasingly complex supply chains. In this environment, passive security is no
longer sufficient; organizations must implement active, continuous, and intelligent monitoring
and defense systems.
This tutorial introduces the fundamental concepts that underpin all subsequent tutorials in Unit 4.
We will explore what security monitoring means, the architectural components of defensive systems,
and the theoretical models that guide their design. We will also examine how the Security
Operations Center (SOC) serves as the nerve centre for security monitoring, and how
threat intelligence and incident response integrate with monitoring
to create a complete security ecosystem.
The content in this tutorial aligns with Stallings & Brown (2024), Chapters 7–9, and
draws from the NIST Cybersecurity Framework (CSF), the IETF security
architecture guidance, and contemporary enterprise best practices. By the end of this tutorial, you will
have a robust conceptual map that will guide you through the deeper technical explorations in later
tutorials — from intrusion detection and firewalls to secure internet protocols and security operations
integration.
This tutorial is the first of eighteen in Unit 4. It sets the stage by establishing the why
and the what of security monitoring and defensive systems; subsequent tutorials will delve
into the how — the specific technologies, protocols, and operational procedures that bring
these concepts to life.
1. Security Monitoring Concepts
1.1 Defining Security Monitoring
Security monitoring is the continuous process of collecting, analyzing, and
interpreting data from across an organization's IT environment to detect security events,
identify potential threats, and enable timely response. It is not a single technology but a
capability built from people, processes, and technology working in concert.
At its core, security monitoring answers three fundamental questions:
- What is happening? — real-time visibility into system and network activity.
- Is it malicious? — distinguishing benign activity from threats.
- What should we do about it? — enabling informed decision-making and response.
1.2 The Monitoring Lifecycle
Effective security monitoring follows a continuous lifecycle:
┌─────────────────────────────────────────────────────────────┐
│ SECURITY MONITORING LIFECYCLE │
├─────────────────────────────────────────────────────────────┤
│ │
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ │
│ │ COLLECT │ ─► │ ANALYZE │ ─► │ DETECT │ ─► │ RESPOND │ │
│ └─────────┘ └─────────┘ └─────────┘ └─────────┘ │
│ ▲ │ │
│ └──────────────────────────────────────────────┘ │
│ │
│ • Collection: logs, netflows, packets, system events │
│ • Analysis: correlation, pattern matching, anomaly │
│ • Detection: alerts, indicators, threat identification │
│ • Response: containment, eradication, recovery │
│ │
└─────────────────────────────────────────────────────────────┘
Figure 1: The Security Monitoring Lifecycle
1.3 Key Monitoring Objectives
Security monitoring is guided by several high-level objectives that shape its implementation:
- Threat Detection: Identify malicious activity as early as possible in the attack
lifecycle, ideally before data exfiltration or system compromise occurs.
- Operational Awareness: Maintain a clear, accurate picture of the security posture
of all assets, including cloud, on-premises, and hybrid environments.
- Compliance & Audit: Provide verifiable evidence that security controls are
functioning as expected and that regulatory requirements (e.g., GDPR, HIPAA, PCI-DSS) are met.
- Incident Response Enablement: Supply responders with the data and context they
need to investigate, contain, and remediate incidents efficiently.
- Continuous Improvement: Feed lessons learned from monitoring back into security
policies, control configurations, and training.
Key Takeaway: Security monitoring is not merely about collecting data — it is about
transforming raw telemetry into actionable intelligence that drives security decisions.
2. Defensive Systems Architecture
2.1 The Defensive Stack
A modern defensive architecture is layered and modular. The following table summarises the primary
defensive system categories, their functions, and typical implementations:
| Layer |
Function |
Example Technologies |
| Perimeter Security |
Control traffic entering/exiting the network; enforce policy at boundary |
Firewalls (NGFW), IPS, VPN gateways |
| Network Security |
Monitor and protect internal network traffic; segment and isolate |
NIDS/NIPS, network segmentation, micro-segmentation |
| Host/Endpoint Security |
Protect individual devices; monitor system-level activity |
HIDS/HIPS, EDR, antivirus, FIM |
| Application Security |
Secure applications and APIs; protect against layer 7 attacks |
WAF, RASP, API gateways with security |
| Data Security |
Protect data at rest, in transit, and in use |
Encryption, DLP, CASB |
| Identity & Access |
Ensure only authenticated, authorized entities access resources |
IAM, MFA, PAM, SSO |
| Security Monitoring & Analytics |
Collect, correlate, and analyze security data across all layers |
SIEM, UEBA, SOAR, threat intelligence platforms |
Table 1: The Defensive Systems Stack
2.2 Architectural Principles
The design of defensive systems is guided by several architectural principles:
- Defense in Depth: Multiple, overlapping layers of protection so that failure of
one layer does not lead to total compromise.
- Least Privilege: Every process, user, and system operates with the minimum
permissions necessary to function.
- Separation of Duties: No single entity has complete control; critical functions
are distributed to reduce the risk of insider threats or single points of failure.
- Fail Secure: When a component fails, it defaults to a secure state (e.g., fail-close
rather than fail-open).
- Continuous Monitoring: Security is not a point-in-time assessment but an ongoing
process of observation and adjustment.
┌──────────────────────────────────────────────────────────────────┐
│ DEFENSE-IN-DEPTH VISUAL │
├──────────────────────────────────────────────────────────────────┤
│ │
│ ┌────────────────────────────────────────────────────────┐ │
│ │ Policies, Procedures, Awareness (Governance) │ │
│ └────────────────────────────────────────────────────────┘ │
│ ▲ │
│ ┌────────────────────────────────────────────────────────┐ │
│ │ Physical Security (access, surveillance) │ │
│ └────────────────────────────────────────────────────────┘ │
│ ▲ │
│ ┌────────────────────────────────────────────────────────┐ │
│ │ Network Security (firewalls, IPS, segmentation) │ │
│ └────────────────────────────────────────────────────────┘ │
│ ▲ │
│ ┌────────────────────────────────────────────────────────┐ │
│ │ Host Security (EDR, HIDS, FIM, hardening) │ │
│ └────────────────────────────────────────────────────────┘ │
│ ▲ │
│ ┌────────────────────────────────────────────────────────┐ │
│ │ Application Security (WAF, secure coding, RASP) │ │
│ └────────────────────────────────────────────────────────┘ │
│ ▲ │
│ ┌────────────────────────────────────────────────────────┐ │
│ │ Data Security (encryption, DLP, integrity) │ │
│ └────────────────────────────────────────────────────────┘ │
│ ▲ │
│ ┌────────────────────────────────────────────────────────┐ │
│ │ Identity & Access (IAM, MFA, PAM) │ │
│ └────────────────────────────────────────────────────────┘ │
│ │
└──────────────────────────────────────────────────────────────────┘
Figure 2: Defense-in-Depth Layered Model
3. Security Models and Frameworks
3.1 The PDR Model (Protection–Detection–Reaction)
The PDR model, introduced by the Internet Security Systems (ISS), is one
of the earliest security frameworks that explicitly recognized the need for detection and response
alongside prevention. It posits that security is a balance of three capabilities:
- Protection (P): Measures that prevent incidents from occurring (firewalls,
access controls, encryption, patching).
- Detection (D): Measures that identify incidents when they occur (IDS, monitoring,
alerts).
- Reaction (R): Measures that respond to and recover from incidents (incident response,
remediation, business continuity).
The model's central insight is that no protection is perfect; therefore, detection and
reaction capabilities are essential. The effectiveness of the system is determined by the time
to detect (Dt) and time to react (Rt) relative to the
time to compromise (Ct). Security is maintained when:
Ct > Dt + Rt
That is, the time needed to compromise a system must be greater than the combined time to detect and
react to the compromise. This simple inequality underscores the need for speed in both
detection and response.
3.2 The P²DR Model (Policy–Protection–Detection–Response)
The P²DR model extends the PDR framework by placing Policy at its
centre. In this model, security policy drives and constrains the other three components:
- Policy: The set of rules, objectives, and constraints that define what "secure"
means for the organization.
- Protection: Controls that enforce the policy.
- Detection: Monitoring that verifies policy enforcement and identifies violations.
- Response: Actions taken when policy violations are detected.
The P²DR model is dynamic: policy evolves in response to changes in the threat landscape, business
requirements, and lessons learned from detection and response activities.
3.3 The Zero Trust Model
The Zero Trust architecture, articulated by John Kindervag and now
formalised in NIST SP 800-207, represents a paradigm shift from perimeter-centric
security. Its core tenets are:
- Never trust, always verify: No entity — inside or outside the network — is
trusted by default.
- Assume breach: Operate under the assumption that the network has already been
compromised, and design controls accordingly.
- Least privilege access: Grant only the minimum access needed for each request,
and enforce continuous verification.
- Micro-segmentation: Divide the network into small, isolated zones to limit
lateral movement.
- Continuous monitoring and validation: Constantly assess the security posture of
all entities and re-evaluate trust dynamically.
Zero Trust has profound implications for security monitoring: it demands granular, continuous
visibility into every access request, every session, and every transaction. Monitoring becomes
the engine that fuels trust decisions.
3.4 The NIST Cybersecurity Framework (CSF)
The NIST CSF is a voluntary framework that provides a common language for managing
cybersecurity risk. It is structured around five core functions:
| Function |
Description |
Monitoring Relevance |
| Identify |
Develop understanding of assets, risks, and vulnerabilities |
Informs monitoring scope and prioritisation |
| Protect |
Implement safeguards to limit impact of incidents |
Monitoring verifies control effectiveness |
| Detect |
Implement activities to identify incidents in a timely manner |
Core monitoring function; all detection capabilities |
| Respond |
Take action to contain and mitigate incidents |
Monitoring feeds response; tracks response efficacy |
| Recover |
Restore capabilities and services after an incident |
Monitoring validates recovery and identifies residual risk |
Table 2: NIST CSF Functions and Monitoring Alignment
4. Defense-in-Depth Strategy
4.1 Historical Context and Rationale
The concept of defense-in-depth originated in military strategy, where multiple, mutually supporting
lines of defense were used to slow and exhaust an attacker. In cybersecurity, the principle recognises
that no single control is foolproof; a layered approach ensures that if one layer is bypassed or fails,
others remain to provide protection.
A well-implemented defense-in-depth strategy integrates technical, administrative, and physical
controls. In the context of security monitoring, each layer contributes telemetry that enhances
overall visibility and detection capability.
4.2 Layered Monitoring in Practice
Defense-in-depth translates into a multi-layered monitoring approach:
- Network layer: Flow data, packet captures, NIDS alerts, and firewall logs
provide visibility into traffic patterns and anomalies.
- Host layer: System logs, process monitoring, file integrity checks, and EDR
telemetry reveal activity at the endpoint level.
- Application layer: Web server logs, database audit trails, and application
performance monitoring detect layer-7 attacks and abuse.
- Identity layer: Authentication logs, access reviews, and identity analytics
detect credential misuse and privilege escalation.
- Data layer: Data loss prevention alerts, database activity monitoring, and
storage access logs protect sensitive information.
Key Takeaway: Defense-in-depth is not just about adding more controls — it is about
creating a resilient system where monitoring at each layer contributes to a comprehensive
security picture.
5. Security Operations Center (SOC)
5.1 The SOC Defined
The Security Operations Center (SOC) is the organizational unit responsible for
continuous security monitoring, threat detection, and incident response. It serves as the nerve
centre of an organisation's security posture, housing the people, processes, and technologies
that keep the enterprise secure.
A typical SOC performs the following functions:
- Continuous monitoring: 24/7/365 surveillance of security events.
- Alert triage and analysis: Evaluate alerts to distinguish true threats from false
positives.
- Incident investigation: Deep analysis of suspicious activity to determine scope,
impact, and root cause.
- Threat intelligence integration: Incorporate external threat data to enhance
detection and prioritisation.
- Incident response coordination: Lead containment, eradication, and recovery efforts.
- Reporting and metrics: Communicate security posture to stakeholders and identify
improvement areas.
5.2 SOC Architecture
┌──────────────────────────────────────────────────────────────────┐
│ SOC ARCHITECTURE OVERVIEW │
├──────────────────────────────────────────────────────────────────┤
│ │
│ ┌────────────────────────────────────────────────────────┐ │
│ │ THREAT INTELLIGENCE FEEDS │ │
│ └────────────────────────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌────────────────────────────────────────────────────────┐ │
│ │ ┌──────────┐ ┌──────────┐ ┌──────────┐ │ │
│ │ │ SIEM │ │ UEBA │ │ SOAR │ │ │
│ │ └──────────┘ └──────────┘ └──────────┘ │ │
│ │ │ │ │ │ │
│ │ └──────────────┼──────────────┘ │ │
│ │ ▼ │ │
│ │ ┌────────────────────────────────────────────────┐ │ │
│ │ │ SECURITY ANALYSTS (Tier 1–3) │ │ │
│ │ └────────────────────────────────────────────────┘ │ │
│ │ │ │ │
│ │ ▼ │ │
│ │ ┌────────────────────────────────────────────────┐ │ │
│ │ │ Incident Response Team / Management │ │ │
│ │ └────────────────────────────────────────────────┘ │ │
│ └────────────────────────────────────────────────────────┘ │
│ ▲ │
│ ┌────────────────────────────────────────────────────────┐ │
│ │ DATA SOURCES: logs, netflows, packets, endpoints, │ │
│ │ cloud APIs, applications, identity systems │ │
│ └────────────────────────────────────────────────────────┘ │
│ │
└──────────────────────────────────────────────────────────────────┘
Figure 3: High-Level SOC Architecture
5.3 SOC Tiers and Staffing
SOC analysts are typically organised into tiers based on skill and responsibility:
- Tier 1 (Alert Analyst): Monitors dashboards, triages alerts, validates events,
escalates suspicious activity.
- Tier 2 (Incident Responder): Conducts in-depth investigation, correlates data
across sources, contains incidents.
- Tier 3 (Threat Hunter / Security Engineer): Proactively hunts for undetected
threats, tunes detection logic, integrates threat intelligence.
6. Monitoring Technologies
6.1 SIEM (Security Information and Event Management)
SIEM is the cornerstone of modern security monitoring. It aggregates, normalises,
and correlates security data from across the enterprise. Core capabilities include:
- Log aggregation: Collect logs from firewalls, IDS/IPS, servers, applications,
and cloud services.
- Normalisation: Transform diverse log formats into a common schema for analysis.
- Correlation: Identify relationships between seemingly unrelated events to detect
complex attack patterns.
- Alerting: Generate alerts based on correlation rules, thresholds, and anomalies.
- Dashboards and reporting: Visualise security posture and support compliance
reporting.
6.2 UEBA (User and Entity Behavior Analytics)
UEBA uses machine learning and statistical analysis to establish baselines of
normal behaviour for users and entities (e.g., servers, applications). It then flags deviations
that may indicate compromise — such as an employee accessing sensitive data at unusual hours or
a server communicating with a known malicious domain. UEBA complements signature-based detection
by identifying unknown threats through behavioural anomalies.
6.3 EDR (Endpoint Detection and Response)
EDR focuses on endpoint visibility and response. It continuously monitors endpoint
activity (processes, file system changes, registry modifications, network connections) and provides
tools for remote investigation and remediation. EDR is particularly valuable for detecting and
responding to advanced threats that evade traditional antivirus.
6.4 SOAR (Security Orchestration, Automation, and Response)
SOAR platforms integrate with SIEM and other security tools to automate repetitive
tasks and orchestrate response workflows. For example, a SOAR playbook might automatically isolate
a compromised host, block malicious IPs at the firewall, and create a service ticket — all within
seconds of an alert being triggered.
Key Takeaway: No single technology provides complete monitoring coverage. An
effective solution integrates SIEM, UEBA, EDR, and SOAR into a cohesive ecosystem that spans
prevention, detection, and response.
7. Threat Intelligence Integration
7.1 What Is Threat Intelligence?
Threat intelligence is evidence-based knowledge about existing or emerging threats,
including context, mechanisms, indicators, and actionable advice. It enables organisations to make
informed decisions about prioritisation, detection, and response.
Threat intelligence is typically classified into three levels:
- Strategic: High-level information for executives and policymakers (e.g., threat
trends, geopolitical risks).
- Tactical: Threat actor tactics, techniques, and procedures (TTPs) for security
architects and engineers.
- Operational: Specific indicators of compromise (IOCs) such as IP addresses,
domains, hashes, and patterns for security analysts.
7.2 Integrating Intelligence into Monitoring
Threat intelligence enhances monitoring in several ways:
- IOC matching: Automatically check logs and network data against known indicators.
- Context enrichment: Augment alerts with intelligence about the threat actor,
campaign, or vulnerability.
- Priority scoring: Assign higher priority to alerts associated with high-risk
threat actors or emerging campaigns.
- Proactive hunting: Use intelligence to guide threat-hunting queries and
investigations.
┌──────────────────────────────────────────────────────────────────┐
│ THREAT INTELLIGENCE INTEGRATION WORKFLOW │
├──────────────────────────────────────────────────────────────────┤
│ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────────┐ │
│ │ INTELLIGENCE│ │ MONITORING │ │ RESPONSE │ │
│ │ SOURCES │ ─► │ PLATFORM │ ─► │ ACTIONS │ │
│ │ │ │ (SIEM) │ │ │ │
│ └─────────────┘ └─────────────┘ └─────────────────┘ │
│ │ │ │ │
│ ▼ ▼ ▼ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────────┐ │
│ │ • Open │ │ • IOC │ │ • Block IPs │ │
│ │ source │ │ matching │ │ • Quarantine │ │
│ │ • Commercial│ │ • Context │ │ • Patch │ │
│ │ • ISACs │ │ enrichment│ │ • Alert │ │
│ │ • Internal │ │ • Priority │ │ • Investigate │ │
│ └─────────────┘ └─────────────┘ └─────────────────┘ │
│ │
└──────────────────────────────────────────────────────────────────┘
Figure 4: Threat Intelligence Integration Workflow
8. Incident Response Integration
8.1 The IR Lifecycle
Incident response (IR) is the process of preparing for, detecting, containing, and
recovering from security incidents. The NIST SP 800-61 defines a four-phase lifecycle:
- Preparation: Develop policies, build teams, deploy tools, and train personnel
before an incident occurs.
- Detection and Analysis: Use monitoring capabilities to identify and assess
potential incidents.
- Containment, Eradication, and Recovery: Isolate affected systems, remove the
threat, and restore normal operations.
- Post-Incident Activity: Conduct lessons-learned reviews, update policies and
controls, and improve future response.
8.2 The Monitoring–IR Connection
Security monitoring is the engine that drives incident response. Without effective monitoring,
incidents may go undetected for extended periods, allowing attackers to achieve their objectives. The
integration between monitoring and IR includes:
- Alert generation: Monitoring systems produce alerts that trigger the IR process.
- Data enrichment: Monitoring platforms provide the data needed for investigation
(logs, packet captures, system snapshots).
- Automated response: SOAR capabilities can execute predefined response actions
based on monitoring alerts.
- Feedback loop: Findings from IR inform monitoring tuning (e.g., new detection rules,
updated baselines).
9. Real-World Applications and Case Studies
9.1 Case Study: Retail Chain Data Breach
A major North American retail chain suffered a data breach that compromised 40 million credit card
records. The attackers gained initial access through a compromised vendor account, then moved
laterally across the network, ultimately installing malware on point-of-sale (POS) systems.
Monitoring gaps identified:
- Insufficient monitoring of third-party access and vendor accounts.
- Limited visibility into POS system network traffic.
- No behavioural analytics to detect anomalous lateral movement.
Improvements implemented:
- Enhanced SIEM correlation rules for vendor account anomalies.
- Deployed network segmentation and monitored east-west traffic.
- Integrated UEBA to detect unusual user and system behaviour.
9.2 Case Study: SOC Transformation at a Financial Institution
A global bank with a mature security program sought to reduce its mean time to detect (MTTD) and
mean time to respond (MTTR). The SOC was generating thousands of alerts per day, but a significant
portion were false positives, leading to analyst fatigue and missed threats.
Approach:
- Implemented a tiered alerting system with automated prioritisation.
- Deployed UEBA to reduce noise and surface high-risk anomalies.
- Integrated threat intelligence to enrich alerts with context.
- Created automated SOAR playbooks for common response scenarios.
Outcome: MTTD reduced by 55%, MTTR reduced by 40%, and analyst satisfaction improved
significantly.
Key Takeaway: Real-world security monitoring is not purely technical — it requires
careful alignment of people, processes, and technology, with continuous improvement driven by
operational experience.
📌 Summary
This tutorial established the foundational concepts of security monitoring and defensive systems.
We began by defining security monitoring as the continuous process of collecting, analyzing, and
acting on security data to protect organizational assets. We explored the monitoring lifecycle —
collect, analyze, detect, respond — and examined the key objectives that guide monitoring programs.
We then surveyed the defensive systems architecture, introducing the layered model of security
controls and the architectural principles — defence in depth, least privilege, separation of duties,
fail secure, and continuous monitoring — that underpin their design.
Several security models and frameworks were examined, including the PDR model, the P²DR model,
the Zero Trust architecture, and the NIST Cybersecurity Framework. These models provide the
theoretical scaffolding for understanding how monitoring fits into broader security strategy.
We also explored the role of the Security Operations Center (SOC) as the operational hub for
monitoring and response, and we surveyed key monitoring technologies: SIEM, UEBA, EDR, and SOAR.
The integration of threat intelligence and incident response was discussed as essential for
closing the loop between detection and action.
Finally, two real-world case studies illustrated how these concepts apply in practice and
highlighted the importance of continuous improvement in security monitoring.
Next: In Tutorial 4.2, we will dive deeper into intrusions, attack methodologies,
and the threat landscape, building on the monitoring and defensive concepts introduced here.
📝 Quiz
Answer the following questions. Check your answers by clicking the Answer button below each question.
1. What is the primary purpose of security monitoring?
- A. To prevent all security incidents from occurring
- B. To collect, analyze, and interpret data to detect threats and enable response
- C. To replace the need for firewalls and access controls
- D. To comply with regulatory requirements only
Answer
B. To collect, analyze, and interpret data to detect threats and enable response. Security monitoring is about visibility and action — not just prevention or compliance.
2. In the PDR model, which inequality defines effective security?
- A. Ct < Dt + Rt
- B. Ct > Dt + Rt
- C. Ct = Dt + Rt
- D. Ct > Dt – Rt
Answer
B. Ct > Dt + Rt. The time to compromise must exceed the combined time to detect and respond.
3. What is the central insight of the P²DR model that distinguishes it from the original PDR model?
- A. It adds a "Recovery" phase
- B. It places "Policy" at the centre, driving and constraining protection, detection, and response
- C. It focuses exclusively on network-level security
- D. It eliminates the need for detection
Answer
B. It places "Policy" at the centre, driving and constraining protection, detection, and response.
4. Which of the following is not a core tenet of the Zero Trust model?
- A. Never trust, always verify
- B. Assume breach
- C. Trust internal networks by default
- D. Least privilege access
Answer
C. Trust internal networks by default. Zero Trust explicitly rejects implicit trust in internal networks.
5. The NIST Cybersecurity Framework consists of five core functions. Which of the following is not one of them?
- A. Identify
- B. Protect
- C. Detect
- D. Respond
- E. Recover
- F. Monitor
Answer
F. Monitor is not one of the five core functions; the functions are Identify, Protect, Detect, Respond, and Recover. Monitoring is an activity that spans multiple functions.
6. What is the primary role of a Security Information and Event Management (SIEM) system?
- A. Only to collect logs for compliance archiving
- B. To aggregate, normalise, and correlate security events from across the enterprise
- C. To replace firewalls and intrusion detection systems
- D. To manage user identities and access controls
Answer
B. To aggregate, normalise, and correlate security events from across the enterprise. SIEM is a centralised platform for security monitoring.
7. UEBA (User and Entity Behavior Analytics) is primarily used for:
- A. Signature-based detection of known malware
- B. Establishing behavioural baselines and detecting anomalies
- C. Encrypting sensitive data
- D. Managing firewall rules
Answer
B. Establishing behavioural baselines and detecting anomalies. UEBA uses machine learning to identify deviations from normal user and entity behaviour.
8. Which SOC tier is responsible for proactive threat hunting and tuning detection logic?
- A. Tier 1 (Alert Analyst)
- B. Tier 2 (Incident Responder)
- C. Tier 3 (Threat Hunter / Security Engineer)
- D. SOC Manager
Answer
C. Tier 3 (Threat Hunter / Security Engineer). Tier 1 triages alerts, Tier 2 investigates, and Tier 3 hunts proactively and tunes detection.
9. The principle of "defense in depth" in security monitoring means:
- A. Installing multiple firewalls in series
- B. Using overlapping layers of monitoring and protection so that failure of one layer does not lead to total compromise
- C. Relying solely on network monitoring
- D. Using the same vendor for all security tools
Answer
B. Using overlapping layers of monitoring and protection so that failure of one layer does not lead to total compromise.
10. What distinguishes tactical threat intelligence from strategic threat intelligence?
- A. Tactical intelligence is more detailed and focuses on TTPs and IOCs; strategic intelligence is high-level and focused on trends and risks
- B. Tactical intelligence is for executives; strategic intelligence is for analysts
- C. They are the same thing
- D. Tactical intelligence focuses on physical security; strategic intelligence focuses on cyber
Answer
A. Tactical intelligence is more detailed and focuses on TTPs and IOCs; strategic intelligence is high-level and focused on trends and risks. Tactical intelligence guides technical decisions, while strategic intelligence guides policy and resource allocation.
11. In the context of incident response integration, what is the primary role of monitoring?
- A. To replace the need for an incident response team
- B. To provide the data and alerts that trigger and inform incident response activities
- C. To ensure all incidents are prevented
- D. To generate compliance reports only
Answer
B. To provide the data and alerts that trigger and inform incident response activities. Monitoring is the detection engine for IR.
12. Which of the following is not a typical function of a Security Operations Center (SOC)?
- A. Continuous monitoring and alert triage
- B. Incident investigation and response coordination
- C. Software development and coding
- D. Threat intelligence integration
Answer
C. Software development and coding. While SOC analysts may write scripts, software development is not a core SOC function.
🛠️ Exercises
Exercise 1: Monitoring Architecture Design Intermediate
Design a high-level security monitoring architecture for a mid-sized organisation with the following characteristics:
- 2,500 employees across three office locations
- Hybrid environment: on-premises data centre + AWS cloud
- 5,000 endpoints (laptops, desktops, servers)
- Critical applications: email, ERP, CRM, and customer portal
- Regulatory requirements: GDPR and PCI-DSS
Your design should include:
- Data sources to be monitored
- Core monitoring technologies (SIEM, UEBA, EDR, SOAR)
- How threat intelligence will be integrated
- How incident response will be supported
- Staffing considerations (SOC tiers)
Sample Solution
Data Sources: Firewall logs, IDS/IPS alerts, Windows/Linux system logs, AWS CloudTrail, application logs (email, ERP, CRM), database audit logs, endpoint telemetry, network flow data.
Core Technologies:
- SIEM: Centralised log aggregation, correlation, alerting, and dashboards.
- UEBA: Behavioural baselines for users and entities; anomaly detection.
- EDR: Endpoint visibility, threat detection, and remote response.
- SOAR: Automated playbooks for common alerts (e.g., malware detection, suspicious login).
Threat Intelligence Integration: Ingest commercial and open-source intelligence feeds; enrich alerts with IOC context; use intelligence to prioritise alerts and guide hunting.
Incident Response Support: Monitoring generates alerts that feed into a ticketing system; SOAR automates containment steps; IR team uses SIEM and EDR for investigation; post-incident feedback tunes monitoring rules.
Staffing: 4–6 Tier 1 analysts for 24/7 triage; 2–3 Tier 2 analysts for investigation; 1–2 Tier 3 threat hunters/engineers; SOC manager for coordination and reporting.
Exercise 2: Analyzing PDR Model Trade-offs Advanced
An organisation has the following metrics:
- Mean time to compromise (Ct): 8 hours
- Mean time to detect (Dt): 6 hours
- Mean time to respond (Rt): 3 hours
Using the PDR model inequality, determine whether the organisation is effectively secure under these metrics. Explain your reasoning and discuss what steps could be taken to improve the security posture.
Then, suppose the organisation deploys a new SIEM that reduces Dt to 2 hours and implements SOAR playbooks that reduce Rt to 1 hour. Re-evaluate the security posture.
Sample Solution
Initial assessment: Ct = 8h, Dt = 6h, Rt = 3h. Dt + Rt = 9h. Since 8h > 9h is false, the organisation is not effectively secure under the PDR model. The combined detection and response time exceeds the time needed to compromise the system.
Improvement steps: Implement faster detection (e.g., better SIEM correlation, UEBA), accelerate response (e.g., automated containment playbooks, improved IR procedures), or reduce the time to compromise (e.g., harden systems, patch faster, segment networks).
After improvement: Dt = 2h, Rt = 1h, sum = 3h. Now 8h > 3h is true, so the organisation is effectively secure. This demonstrates that significant investment in detection and response can drastically improve security posture.
Exercise 3: Zero Trust Monitoring Scenario Intermediate
A financial services company is adopting a Zero Trust architecture. They need to ensure continuous monitoring and verification of all access requests. Describe:
- What data sources and monitoring capabilities are essential for Zero Trust.
- How monitoring would dynamically influence trust decisions (e.g., access grants).
- What challenges you anticipate in implementing Zero Trust monitoring.
Sample Solution
Essential data sources: Authentication logs, identity and access management telemetry, network flow data, endpoint security telemetry, cloud API logs, application access logs, and real-time risk scores from UEBA.
Dynamic trust decisions: Each access request is evaluated in real-time. Monitoring systems assess device health, user behaviour, location, time, and sensitivity of the resource. If the risk score exceeds a threshold, the request is denied or stepped-up (e.g., MFA challenge). Continuous session monitoring re-evaluates trust throughout the session.
Challenges:
- Data volume: Massive amounts of telemetry require scalable infrastructure.
- Latency: Real-time trust decisions require low-latency analysis.
- Integration complexity: Many systems must feed data into the policy decision point.
- False positives: Overly aggressive monitoring can disrupt legitimate users.
- Skills gap: Zero Trust requires specialised expertise in both security and data analytics.
Exercise 4: Comparing Monitoring Technologies Introductory
Create a comparison table for the following monitoring technologies: SIEM, UEBA, EDR, and SOAR. Include the following dimensions:
- Primary function
- Key inputs
- Key outputs
- Primary users
- One strength and one limitation
Sample Solution
| Technology | Primary Function | Key Inputs | Key Outputs | Primary Users | Strength | Limitation |
| SIEM | Log aggregation, correlation, alerting | Logs, events, alerts | Alerts, dashboards, reports | Analysts, IR | Centralised visibility | Noise / false positives |
| UEBA | Anomaly detection via behavioural baselines | User/entity activity data | Risk scores, anomaly alerts | Analysts, threat hunters | Detects unknown threats | Requires tuning; can be noisy |
| EDR | Endpoint monitoring and response | Process, file, registry, network data | Alerts, containment actions, investigation data | Analysts, IR | Deep endpoint visibility | Limited to endpoints |
| SOAR | Orchestration, automation, response | Alerts, playbooks, threat intel | Automated response actions, tickets, reports | Analysts, IR, engineers | Accelerates response | Requires well-defined playbooks |
Exercise 5: Threat Intelligence Application Intermediate
Your SIEM generates an alert: "Multiple failed login attempts followed by successful login from a geographically unusual location." The alert includes:
- Source IP: 185.234.x.x (identified as part of a known botnet in open-source threat feeds)
- User account: jsmith@company.com (standard employee)
- Time: 03:14 UTC (outside normal working hours)
- Success login to VPN from the same IP
Using your understanding of threat intelligence integration, answer the following:
- What intelligence sources would you consult to enrich this alert?
- What additional context would you look for?
- What priority would you assign to this alert and why?
- What response actions would you recommend?
Sample Solution
1. Intelligence sources: Open-source feeds (e.g., AlienVault OTX, MISP), commercial threat intelligence platforms, internal threat intelligence database, ISAC sharing.
2. Additional context: History of the source IP (known malicious activity?); Has jsmith's account been targeted before?; Are there other alerts from the same IP or user?; What resources did jsmith access after login?; Any outbound data transfers?
3. Priority: High priority. The combination of known malicious source IP, out-of-hours access, and unusual geolocation strongly suggests account compromise. High confidence that this is a real threat.
4. Response actions: Immediately revoke the session; reset the user's password; enforce MFA challenge; block the source IP at the firewall; isolate any affected systems; initiate investigation (what was accessed?); notify the user and management; preserve logs for forensic analysis.
📚 Homework
Homework 1: Research the history and evolution of the Security Operations Center (SOC) concept. Write a two-page paper that traces the SOC from its origins in military and intelligence operations to its modern incarnation as a fusion centre for cybersecurity. Discuss the key technological and organisational developments that have shaped SOC evolution. Include at least three academic or industry references.
Sample Answer
Key points to address:
- Origins in military command centres and intelligence analysis (e.g., NORAD, NSA).
- Adoption in the private sector in the 1990s with the rise of enterprise networks and the internet.
- Evolution from "security monitoring" to "security operations" with SIEM as the core.
- Shift from reactive to proactive (threat hunting) and from signature-based to behavioural detection.
- Modern fusion: integrating threat intelligence, SOAR, and cloud monitoring.
- Organisational evolution: from IT-centric to business-aligned security functions.
References: NIST SP 800-61, SANS SOC Framework, academic papers on SOC effectiveness.
Homework 2: Compare and contrast the NIST Cybersecurity Framework (CSF) and the Zero Trust model. In what ways are they complementary, and where do they diverge? Write a 1,000-word analysis that addresses how each framework informs the design of security monitoring programs. Provide specific examples of how monitoring requirements differ under each framework.
Sample Answer
Complementary aspects: Both emphasise continuous monitoring, risk management, and resilience. The NIST CSF provides a high-level framework with Identify–Protect–Detect–Respond–Recover functions; Zero Trust provides a specific architectural approach with continuous verification.
Divergence: NIST CSF is agnostic to architecture; Zero Trust prescribes a specific access-control paradigm. Zero Trust demands much more granular, real-time monitoring of every access request, while NIST CSF allows for traditional perimeter-based approaches.
Monitoring under each: NIST CSF monitoring focuses on detecting and responding to incidents across all functions. Zero Trust monitoring is built into the enforcement of trust decisions: every access is logged, risk-scored, and potentially blocked. Zero Trust also requires monitoring of internal east-west traffic, not just north-south perimeter traffic.
Homework 3: A mid-size healthcare provider is experiencing a high volume of security alerts, many of which are false positives. The SOC is overwhelmed, and legitimate threats are being missed. Design a strategy to reduce false positives and improve the signal-to-noise ratio of the monitoring program. Your strategy should address:
- Alert tuning and rule refinement
- Use of behavioural analytics
- Threat intelligence integration
- Process improvements and analyst training
- Metrics to measure success
Sample Answer
- Alert tuning: Review SIEM correlation rules; adjust thresholds; eliminate redundant or low-value rules; implement a feedback loop where analysts flag false positives for tuning.
- Behavioural analytics: Deploy UEBA to establish baselines; surface anomalies rather than signature-based alerts; use risk scoring to prioritise.
- Threat intelligence integration: Use intelligence to filter out alerts from known benign sources; prioritise alerts with high-fidelity intelligence context.
- Process improvements: Implement a tiered alerting system; invest in analyst training; create standardised playbooks for common alert types.
- Metrics: Track alert volume, false positive rate, mean time to triage, and analyst satisfaction; set targets for improvement.
Homework 4: Research a recent (within the last 3 years) major data breach and analyse the role that security monitoring (or the lack thereof) played in the incident. Write a case study report that includes:
- Overview of the breach (what, when, who, impact)
- How the breach was discovered (or not discovered) through monitoring
- Specific monitoring gaps or failures that contributed to the breach
- Recommendations for how better monitoring could have prevented or mitigated the breach
- Lessons learned for security monitoring programs
Sample Answer
Example breach: SolarWinds SUNBURST compromise (2020). Attackers inserted a backdoor into SolarWinds Orion software, affecting thousands of customers including US government agencies.
Monitoring role: Many organisations failed to detect the backdoor activity because the attacker used legitimate credentials and operated within normal administrative behaviour windows. Detection was delayed for months in many cases.
Gaps: Lack of visibility into third-party software supply chain; insufficient monitoring of administrative accounts; limited behavioural baselining to detect anomalous activity that appeared "normal."
Recommendations: Monitor software supply chain and third-party integrations; implement UEBA for privileged accounts; adopt Zero Trust principles; conduct regular threat-hunting for advanced threats.
Lessons: Monitoring must cover the entire ecosystem, including third parties; behavioural detection is critical for advanced threats; incident response must be prepared for large-scale supply chain attacks.
Homework 5: Develop a set of 10 security monitoring metrics that a SOC manager could use to measure the effectiveness and efficiency of the SOC. For each metric, define how it is calculated, what it measures, why it matters, and what a "good" value would be. Include leading and lagging indicators, as well as both technical and organisational metrics.
Sample Answer
- Mean Time to Detect (MTTD): Average time from incident onset to detection. Lower is better. Target: < 4 hours.
- Mean Time to Respond (MTTR): Average time from detection to containment. Target: < 2 hours.
- Alert Volume: Number of alerts generated per day. Too high indicates noise; too low may indicate blind spots. Target: steady, manageable.
- False Positive Rate: % of alerts that are false positives. Target: < 10%.
- Alert Triage Time: Average time from alert generation to analyst review. Target: < 15 minutes.
- Incident Escalation Rate: % of alerts that are escalated to Tier 2/3. Target: < 20% (meaning most alerts handled at Tier 1).
- Threat Hunting Success Rate: Number of confirmed threats discovered through hunting vs. automated alerts. Target: > 10% of incidents should come from hunting.
- Coverage Score: % of critical assets/controls being monitored. Target: 100%.
- Analyst Workload: Number of alerts per analyst per shift. Target: 20–30 alerts per shift (sustainable).
- Post-Incident Improvement: Number of detection/response improvements implemented after each incident. Target: at least 1 improvement per major incident.
COMP400 – Computer and Network Security (Revision 3) • Unit 4: Security Systems and Models