37 releases

0.12.0 Feb 20, 2024
0.11.2 Feb 13, 2023
0.11.1 Oct 25, 2022
0.11.0 Sep 27, 2021
0.4.0 Mar 30, 2017

#108 in Testing

Download history 20854/week @ 2024-07-04 15156/week @ 2024-07-11 12245/week @ 2024-07-18 15906/week @ 2024-07-25 12978/week @ 2024-08-01 13377/week @ 2024-08-08 11404/week @ 2024-08-15 11403/week @ 2024-08-22 10233/week @ 2024-08-29 11784/week @ 2024-09-05 9620/week @ 2024-09-12 9785/week @ 2024-09-19 10511/week @ 2024-09-26 9450/week @ 2024-10-03 14310/week @ 2024-10-10 13422/week @ 2024-10-17

49,717 downloads per month
Used in text_manipulation_rs

MIT/Apache

64KB
1.5K SLoC

cargo fuzz

A cargo subcommand for fuzzing with libFuzzer! Easy to use!

Installation

$ cargo install cargo-fuzz

Note: libFuzzer needs LLVM sanitizer support, so this only works on x86-64 Linux, x86-64 macOS and Apple-Silicon (aarch64) macOS for now. You'll also need a C++ compiler with C++11 support.

If you have an old version of cargo fuzz, you can upgrade with this command:

$ cargo install -f cargo-fuzz

Usage

cargo fuzz init

Initialize a cargo fuzz project for your crate!

If your crate uses cargo workspaces, add fuzz directory to workspace.members in root Cargo.toml

fuzz directory can be either a part of an existing workspace (default) or use an independent workspace. If latter is desired, you can use cargo fuzz init --fuzzing-workspace=true.

cargo fuzz add <target>

Create a new fuzzing target!

cargo fuzz run <target>

Run a fuzzing target and find bugs!

cargo fuzz fmt <target> <input>

Print the std::fmt::Debug output for a test case. Useful when your fuzz target takes an Arbitrary input!

cargo fuzz tmin <target> <input>

Found a failing input? Minify it to the smallest input that causes that failure for easier debugging!

cargo fuzz cmin <target>

Minify your corpus of input files!

cargo fuzz coverage <target>

Generate coverage information on the fuzzed program!

Documentation

Documentation can be found in the Rust Fuzz Book.

You can also always find the full command-line options that are available with --help:

$ cargo fuzz --help

Trophy case

The trophy case has a list of bugs found by cargo fuzz (and others). Did cargo fuzz and libFuzzer find a bug for you? Add it to the trophy case!

License

cargo-fuzz is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

Dependencies

~4–13MB
~169K SLoC