Module libafl::feedbacks

source ·
Expand description

The feedbacks reduce observer state after each run to a single is_interesting-value. If a testcase is interesting, it may be added to a Corpus.

Re-exports§

Modules§

  • Concolic feedback for concolic fuzzing. It is used to attach concolic tracing metadata to the testcase. This feedback should be used in combination with another feedback as this feedback always considers testcases to be not interesting. Requires a ConcolicObserver to observe the concolic trace.
  • Diff Feedback, comparing the content of two observers of the same type.
  • The module for list feedback
  • Map feedback, maximizing or minimizing maps, for example the afl-style map observer.
  • Nautilus grammar mutator, see https://github.com/nautilus-fuzz/nautilus
  • The NewHashFeedback uses the backtrace hash and a hashset to only keep novel cases
  • Feedback and metatadata for stderr and stdout.
  • Feedbacks and associated metadata for detecting whether a given testcase was transferred from another node.

Structs§

Enums§

  • The ConstFeedback reports the same value, always. It can be used to enable or disable feedback results through composition.

Traits§

  • Feedbacks evaluate the observers. Basically, they reduce the information provided by an observer to a value, indicating the “interestingness” of the last run.
  • Factory for feedbacks which should be sensitive to an existing context, e.g. observer(s) from a specific execution
  • Logical combination of two feedbacks
  • Has an associated observer name (mostly used to retrieve the observer with MatchName from an ObserverTuple)

Type Aliases§

  • A feedback factory for crash feedbacks
  • Combine two feedbacks with an eager AND operation, will call all feedbacks functions even if not necessary to conclude the result
  • Combine two feedbacks with an eager OR operation, will call all feedbacks functions even if not necessary to conclude the result
  • Combine two feedbacks with an fast AND operation, might skip calling feedbacks functions if not necessary to conclude the result
  • Combine two feedbacks with an fast OR operation, might skip calling feedbacks functions if not necessary to conclude the result. This means any feedback that is not first might be skipped, use caution when using with TimeFeedback
  • A feedback factory for timeout feedbacks