200 likes | 379 Views
Intrusion Detection Methods. “Intrusion detection is the process of identifying and responding to malicious activity targeted at computing and networking resources.”. The Seven Fundamentals. What are the methods used How are IDS Organized What is an intrusion
E N D
Intrusion Detection Methods “Intrusion detection is the process of identifying and responding to malicious activity targeted at computing and networking resources.”
The Seven Fundamentals • What are the methods used • How are IDS Organized • What is an intrusion • How do we trace and how do they hide • How do we correlate information • How can we trap intruders • Incident response
The Major components of IDS • Target System • Feed • Processing • Knowledge base • Storage • Alarms • Operator interface • Communications infrastructure • Multiple IDS • Network management
Major components of IDS (cont.) • Target System • Important networks and systems! • Feed • Information collected from the target systems and sent back for processing • Q: should feeds carry raw traffic back to the processing system? Should they carry alarms? What are the considerations?
Major components of IDS (cont.) • Processing • The execution of the detection algorithms • Knowledge Base • Used to store information about attacks, user profiles, ..etc. • Ability to update is an important issue • Storage • Short term vs. long term storage • Performance and capacity issues
Major components of IDS (cont.) • Alarms and Directives • Various types of configurable alarms and notification methods are typically supported • Increasing trend towards using them for automatic reconfiguration of other network components (See CIDF for messaging model) • Communications infrastructure • Used for communications between IDS components • Security needs?
Major components of IDS (cont.) • Multiple IDS • Common in many environments • The need for secure integration • Network management • Integration and interaction issues
IDS processing • Processing components in IDS include: • Engines • Filters • Set of autonomous agents each performing a specified task • Management • Correlation • Combine results! • Interface with other components
IDS algorithms • Baseline processing while (true) { target_system_feed(info); intrusion_processing(info, results); If (result == intrusion) initiate_response(result); }
IDS algorithms (cont.) • Dynamic association while (true){ target_system_feed(info); if (suspicious(info) && new(info)) create new association if(suspicious(info)&& not new(info)) add to existing association }
IDS algorithms (cont.) • Audit trail data reduction • Loop over log records • Consider combinations of records • Check if they are relevant to current incident • Append to report • Other types of data reduction?
IDS algorithms (cont.) • Out-of-band correlation processing while (true){ target_system_feed(info); if (OOB_data) get_OOB(operator_input); if(relevant(info, operator_input) combine(info, operator_input); }
IDS algorithms (cont.) • Attack filter pattern matching while (true){ target_system_feed(info); For (i=0; i< NumFilters; i++) if (match(filter[i], info)) AttackFound(i) }
IDS Knowledge Base • Profiles of normal and abnormal behavior • Attack signatures • Suspicious traffic patterns / strings • Information used to initiate responses and actions
Target System IDS Processing GUI/ Operator Interface Alarms/ Directives Storage Feed System Management Knowledge Bases user profiles system profiles attack signatures response actions other static info
IDS Storage • Archives • IDS logs • Dynamic buffer • The case of Oklahoma bank Camera • The case of the Cuckoo's Egg
Target System IDS Processing GUI/ Operator Interface Alams/ Directives Feed Knowledge Base System Management Intrusion Detection Storage audit log archive buffer
CIDF • Architectural conventions • Message specifications (GIDO: generalized ID objects) • Transmission standards for sending GIDOs between components • Communications protocol for CIDF components • API for CIDF
CIDF • Event generator (E-Box) • Analysis Engine (A-box) • Storage (D-Box) • Response component (R-Box) http://www.isi.edu/~brian/cidf/ http://www.isi.edu/~brian/cidf/drafts/architecture.txt