IDS Analysis Models and Techniques Summary - CSU1288 - Shoolini U

Summary of IDS Analysis Models and Techniques

1. What is IDS Analysis?

2. IDS Analysis Models

  1. Signature-Based Models

    • Matches data against known attack signatures.
    • Accurate for known attacks, cannot detect new threats.
  2. Anomaly-Based Models

    • Detects deviations from normal behavior.
    • Can detect unknown threats, high false positives.
  3. Hybrid Models

    • Combines signature + anomaly detection.
    • More accurate, complex and resource-heavy.
  4. Statistical & Machine Learning Models

    • Uses algorithms and statistics to model behavior and detect anomalies.

3. Signature-Based Detection

4. Anomaly-Based Detection

5. Hybrid IDS Models

6. Statistical Analysis Models

7. Machine Learning in IDS

Supervised Learning

Unsupervised Learning

Reinforcement Learning

8. Evaluating IDS Models

Metric Meaning
True Positives Correctly flagged attacks
False Positives False alerts on normal activity
True Negatives Correctly identified normal activity
False Negatives Missed attacks
Precision TP / (TP + FP)
Recall TP / (TP + FN)
F1-Score Balance between precision and recall

9. IDS Model Selection Criteria