intrusion detection methods

20
1 Intrusion Detection Methods “Intrusion detection is the process of identifying and responding to malicious activity targeted at computing and networking resources.”

Upload: aidan-king

Post on 30-Dec-2015

27 views

Category:

Documents


1 download

DESCRIPTION

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 - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Intrusion Detection  Methods

1

Intrusion Detection Methods

“Intrusion detection is the process of identifying and responding to malicious activity targeted at computing and networking resources.”

Page 2: Intrusion Detection  Methods

2

The Seven Fundamentals

1. What are the methods used

2. How are IDS Organized3. What is an intrusion4. How do we trace and how do they hide5. How do we correlate information6. How can we trap intruders7. Incident response

Page 3: Intrusion Detection  Methods

3

The Major components of IDS

• Target System• Feed• Processing• Knowledge base• Storage• Alarms• Operator interface• Communications infrastructure• Multiple IDS• Network management

Page 4: Intrusion Detection  Methods

4

TargetSystem

Feed Processing

SystemManagement

KBStorage

Alarms/Directives

GUI

Communcations Infrastucture

TargetSystem

TargetSystem

NetworkManagment

IDS IDS

Text book: figure 3-1

Page 5: Intrusion Detection  Methods

5

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?

Page 6: Intrusion Detection  Methods

6

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

Page 7: Intrusion Detection  Methods

7

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?

Page 8: Intrusion Detection  Methods

8

Major components of IDS (cont.)

• Multiple IDS– Common in many environments– The need for secure integration

• Network management– Integration and interaction issues

Page 9: Intrusion Detection  Methods

9

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

Page 10: Intrusion Detection  Methods

10

IDS algorithms

• Baseline processing

while (true) {

target_system_feed(info);

intrusion_processing(info, results);

If (result == intrusion)

initiate_response(result);

}

Page 11: Intrusion Detection  Methods

11

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

}

Page 12: Intrusion Detection  Methods

12

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?

Page 13: Intrusion Detection  Methods

13

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);

}

Page 14: Intrusion Detection  Methods

14

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)

}

Page 15: Intrusion Detection  Methods

15

IDS Knowledge Base

• Profiles of normal and abnormal behavior

• Attack signatures

• Suspicious traffic patterns / strings

• Information used to initiate responses and actions

Page 16: Intrusion Detection  Methods

16

IDS

Feed

Processing

SystemManagement

StorageAlarms/

Directives

GUI/OperatorInterface

TargetSystem

Knowledge Bases

attacksignatures

otherstatic info

responseactions

userprofiles

systemprofiles

Page 17: Intrusion Detection  Methods

17

IDS Storage

• Archives

• IDS logs

• Dynamic buffer

• The case of Oklahoma bank Camera

• The case of the Cuckoo's Egg

Page 18: Intrusion Detection  Methods

18

IDS

Feed

Processing

SystemManagement

KnowledgeBase

Alams/Directives

GUI/OperatorInterface

TargetSystem

Intrusion Detection Storage

auditlog

bufferarchive

Page 19: Intrusion Detection  Methods

19

CIDF

• Architectural conventions• Message specifications (GIDO: generalized

ID objects)• Transmission standards for sending GIDOs

between components• Communications protocol for CIDF

components• API for CIDF

Page 20: Intrusion Detection  Methods

20

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