Skip to content

MozillaSecurity/grizzly

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
October 11, 2022 12:43
March 2, 2022 18:03
May 1, 2019 13:23
January 30, 2023 09:32
June 28, 2019 10:10
April 25, 2022 16:06
January 30, 2023 09:32
October 11, 2022 12:43
January 30, 2023 09:32

Grizzly

Task Status codecov Matrix PyPI

Grizzly is a modular general purpose browser fuzzing framework. The goal is to create a platform that can be extended via the creation of plug-ins to support multiple combinations of browsers and fuzzers. An Adapter is used to add support for a fuzzer and a Target to add support for a browser. Generated test cases are intended to be standalone and not require Grizzly.

Cross platform compatibility is available for Windows, Linux and MacOS. However not all features may be available.

For additional information please check out the wiki or the announcement.

Quick Start

Install the latest version from PyPI. For more details see getting started on the wiki.

python3 -m pip install grizzly-framework

Fuzz - Run the no-op test adapter to check everything is working.

python3 -m grizzly <browser-binary> no-op

Reduce - Grizzly Reduce can reduce a test case.

python3 -m grizzly.reduce <browser-binary> <testcase>

Replay - Grizzly Replay can replay a test case with different builds and debuggers.

python3 -m grizzly.replay <browser-binary> <testcase>