RTUComputer ScienceYr 2023 · Sem 52023

Q4Cyber Security Management

Question

4 marks

Discuss the concept of Intrusion Detection Systems (IDS).

Answer

An architectural review of Intrusion Detection Systems (IDS), explaining how Network-based and Host-based sensors utilize Signature and Anomaly detection algorithms to alert administrators of active cyber-attacks.

While Firewalls act as the absolute outer armor of a network, an Intrusion Detection System (IDS) operates as the aggressive internal security alarm. An IDS is a highly complex monitoring architecture engineered to continuously analyze network traffic and system logs, violently searching for malicious activities, policy violations, or unauthorized access attempts that successfully bypassed the firewall. Unlike an Intrusion Prevention System (IPS) which aggressively drops malicious packets, a pure IDS is strictly passive; it mathematically detects the threat and instantly generates high-priority alerts for human security engineers.

Architectural Deployments

  • 1. Network-Based IDS (NIDS): The NIDS sensors are physically deployed at critical strategic chokepoints across the enterprise network (e.g., just inside the firewall or at the core switch). The NIDS aggressively sniffs every single packet traversing the subnet, mathematically analyzing the raw headers and payloads in real-time. It provides massive, overarching visibility of the entire network architecture.
  • 2. Host-Based IDS (HIDS): HIDS agents are software modules aggressively installed directly onto specific, critical endpoint machines (like a database server). Rather than sniffing network wires, the HIDS rigidly monitors the internal OS architecture. It continuously hashes critical system files to detect unauthorized modification (File Integrity Monitoring) and violently analyzes OS event logs and registry changes.

Mathematical Detection Algorithms

  • 1. Signature-Based Detection: The IDS maintains a massive, constantly updated mathematical database of known attack "Signatures" (e.g., specific byte sequences associated with a known malware payload). The engine rapidly compares incoming packets against this database. If a perfect mathematical match is found, an alarm triggers. This is highly efficient but completely useless against brand-new "Zero-Day" attacks that possess no known signature.
  • 2. Anomaly-Based Detection: This utilizes advanced machine learning and statistical baselining. The IDS aggressively monitors the network for weeks to mathematically establish a "Normal" behavioral baseline (e.g., Server A usually sends 50MB of data to Server B at 2 AM). If the IDS detects a massive mathematical deviation from this baseline (e.g., Server A suddenly tries to send 500GB of encrypted data to an unknown IP in Russia), it violently triggers an anomaly alarm, catching unknown Zero-Day attacks.
Back to Paper