Giter Club home page Giter Club logo

slowfuzz's Introduction

SlowFuzz

A spin on libFuzzer so as to favor inputs incurring a slowdown. The key modifications consist of changing the fitness function, to favor inputs that excercise more basic block edges, as well as introducing probabilities in the selection of mutations to be performed, so as to preserve "locality" of the created inputs.

In particular, there are 4 available modes for mutations:

  • Random: the mutation is selected at random.

  • Mutation priority: Prioritize mutations that were successful in previous runs

  • Offset priority: Prioritize mutating certain offsets (buckets of the input). The number of buckets to split the input into is controlled via the score_buckets parameter.

  • Hybrid mode: Keep a score for the different mutations for each input bucket

The respective mutation mode to be used is controlled via the -death_mode option (run the compiled binary with -help=1 for all available options)

Finally, this implementation adds some functionality with respect to using dictionary files. In particular, the options -only_dict=1 limits libfuzzer to only use characters provided in the given dictionary (one character per line) and to not introduce any other characters.

For more information see the SlowFuzz paper.

Example usage

To see how SlowFuzz generates inputs causing a slowdown for a given implementation, let's pick a simple example of an insertion sort implementation. To this end, run:

cd apps/isort
make fuzzer
make
make test

A directory out/ is created, containing all the units that caused a slowdown.

slowfuzz's People

Contributors

nettrino avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.