Difference between revisions of "CCS2011: Enemy of the Good"

From Soma-notes
Jump to navigation Jump to search
Line 69: Line 69:
* Still has persistent false positives _and_ false negatives
* Still has persistent false positives _and_ false negatives


===Limits of ML===
<i>Objective</i>: Argue that, while there are still improvements to be made in ML algorithm development and refinement, both the "law of diminishing returns", and the challenging data realities implicit in IDS indicated our efforts should be refocused.
<i>Question</i>: Do researchers still attempt to apply binary classifiers to IDS?
* If this is the case, and, perhaps, regardless, the ML section can be structured as follows:
ML Section
*Overview of binary and one-class classification
**Discrimination based approach versus a recognition based approach
**The type of results produced
***One-class: Helicopter gearbox, breast cancer mammogram, continuous typist recognition, <i>etc.</i>  Conceptually these all seem approximately Gaussian, and good results were achieved.
**What are the data requirements need in order to achieve these results
***For binary: assume a representative set of data has been drawn from class &omega;<sub>1</sub> and &omega;<sub>2</sub>. The distributions are generally assumed to be stationary, if not, extra consideration has to be given. With these assumptions, we theoretically expect that the degree to which class &omega;<sub>1</sub> and class &omega;<sub>2</sub> overlap will define the minimum error threshold.
*** Based on the fact that neither user behaviour nor attacker behaviour is stationary, and the fact that acquiring a representative set of, even historic, attacker data is extremely challenging (to put it mildly),  the notion of building a necessarily accurate model based on the binary classification paradigm is a formidable one.
***For one-class: assume a representative set of data has been drawn from class &omega;<sub>1</sub>, and, as a result, the distribution can be generalized to a level of accuracy necessary for the model to achieve an acceptably low error rate in future application. Assuming the classes are generally separable, this can be done for parametric distributions, such as Gaussian, and non-parametric distributions, provided they are devoid of a “fat tail”.
**Law of Diminishing Returns
***discussion based on hand
*Conclusion
**For these reasons, and those articulated in the remained of this paper, we believe that the prudent next step in IDS research is a thorough examination of novel techniques for dealing with current degree of FP. More specifically, this thesis arises from the fact that it is clear that the added benefit of the increasingly sophisticated ML algorithms is diminishing, and that, to some degree, FP are, and will remain, a fact of life in IDS.


=What Goes Wrong=
=What Goes Wrong=

Revision as of 08:42, 21 March 2011

ToDo

  • Gather data from different IDS observables to show they aren't Gaussian
    • system calls (Luc)
    • network traffic
    • log files
  • Machine learning
    • standard machine learning methods approximate distributions
    • approximation works best if Gaussian but has limits (show mathematically)
    • non-Gaussian distributions place much harsher restrictions on error rates, they don't go down proportionally to sample size? (more math)
  • Survey of results in IDS literature


Title

The Enemy of the Good: Re-evaluating Research Directions in Intrusion Detection

Abstract

Introduction

  • For IDS to work, we need very accurate detectors
    • base rate fallacy
    • specifically, very low false alarm rates
  • To date, nobody has achieved sufficiently low false alarm rates to be universally applicable
    • signature and spec methods can be ad-hoc tuned to be good enough but then have poor coverage of new attacks
    • adaptive methods cannot be sufficiently tuned
  • We argue that we can't get low enough false alarm rates, that there are fundamental limits on IDS performance due to the underlying distributions of legitimate and attacker behavior.
  • Reasons:
    • legit behavior is non-Gaussian, largely power-law like, meaning they have fat tails
    • attacker behavior cannot be sampled sufficiently to learn distribution
    • and besides, attacker behavior keeps changing to follow new attack innovations (more like spread of disease than Gaussian, fundamentally not stationary) and to behave more like legitimate behavior to avoid defenders
    • if we could get good samples of both classes, we might be able to separate them; but instead we must do one-class learning and one-class learning cannot deal well with very long tails.
    • "adaptive concept drift"

IDS Requirements

  • scalability in false alarms
  • detect wide range of attacks
    • realistically won't catch all attacks, but should go significantly beyond "just what I've seen" (otherwise cannot address attacker innovation)
  • low resource usage (network, CPU, storage/IO, user, administrator)
  • Stated this way, looks like a ML problem

Machine Learning

  • many, many techniques
  • basic idea: combine a-priori knowledge built into learning method with observations to create classification model
  • IDS is a binary classification problem
  • most accurate methods require representative set of each class
  • if not both, need at least one representative set
  • to do this, data should have certain characteristics


Legitimate behavior


    • Classifier technology and the illusion of progress[1]

Sections:

  • Problem


Best case scenario: credit card fraud detection

  • Two class learning is possible
  • Relatively low rate of data
  • Still has persistent false positives _and_ false negatives


What Goes Wrong

  • Poor results
    • datasets do not represent real-world usage or scenarios accurately
    • insufficient or misleading tests of false positive rates
    • Even when rates are accurate, they are misinterpreted: high FP rates are not considered to be high (wrong time scale, lack of attention to scalability)
    • misleading integration of attacks into legitimate behavior
  • Administrative overhead
    • rules that can only be created by experts, but system requires end users to create custom rules
    • experts required to interpret output
    • insufficient context for even experts to interpret output
    • assumption of existence of security personnel that won't even exist in many important contexts
  • Computational overhead
    • can system keep up with normal workloads?
    • can system keep up with attacker-generated workloads?
  • Anomalies versus attacks
    • why is one a good proxy for the other?
    • why is chosen feature(s) particularly good at detecting attacks?
  • Out of the box algorithms applied w/o understanding security problem
  • Attacker evasion: how can attacker manipulate system? Can system lead to environment that is easier to attack?

Discussion

Conclusion

References