Git Product home page Git Product logo

fuzzer's Introduction

Build Status

fuzzer

A fuzzer for testing. This implements mutation fuzzing, in which an expect input is mutated (changed) many times in order to trigger unexpected behavior or crashes.

install

npm install fuzzer

api

fuzzer.mutate.object(obj)

Generate a mutated version of an object. This does not modify the object directly, but returns a modified copy. This mutation will increment and decrement numbers, randomize arrays, remove properties, and more.

fuzzer.mutate.string(str)

Generate a mutated version of a string, with reversed, removed, and added characters.

fuzzer.seed(number)

Seed the random number generator random-js that determines mutations. By calling this function with the same number, you can generate the same mutations consistently.

fuzz-get

If you install this globally it provides a single cli utility called fuzz-get.

npm install -g fuzzer
fuzz-get "./bin/fuzz-get "http://localhost:8889/foo/bar/your/rest/api"

This will run mutated requests against your server continously - it will mutate the path requested into other incorrect requests, and log in the form:

HTTP200:/foo/bar/your/rest/api
HTTP404:/foo/baryour/rest/api

So you can pipe into | grep "HTTP500" if you wish.

example

var test = require('tap').test,
    fuzzer = require('fuzzer');

fuzzer.seed(0);

test('something', function(t) {
    var generator = fuzzer.mutate.object(yourTestingInput);
    for (var i = 0; i < 1000; i++) {
        t.doesNotThrow(function() {
            yourLibrary(generator());
        });
    }
});

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.