cargo-fuzz
cargo-fuzz copied to clipboard
Command line helpers for fuzzing
Is there is any interest in hosting an (official) rust-fuzz docker image with things like cargo-fuzz and afl-rs pre-installed and keeping up with the latest nightly rust? I set up...
My system: Ubuntu 20.04.1 LTS target: x86_64-unknown-linux-gnu My fuzz depends on a dynamic library: ss.so. ss is a rust project. The ss.so file is generated when `cargo fuzz run fuzz_target_1`...
The `cargo build` command has some flags that `cargo fuzz build` doesn't have. Two of them are `--locked` and `--frozen`, which would be very useful on CI to make sure...
Hi. Sorry if this is a bit of an odd use case, but some help would be great. I am migrating a tool that multiplexes fuzzing targets. Due to legacy...
Bumps [thread_local](https://github.com/Amanieu/thread_local-rs) from 1.1.3 to 1.1.4. Commits 4a54e57 Bump version to 1.1.4 ebf8b45 Merge pull request #34 from ibraheemdev/patch-1 3d69afa Fix memory ordering in RawIter::next See full diff in compare...
Command: ``` cargo cov -- show fuzz/target//release/my_compiler \ --format=html \ -instr-profile=fuzz/coverage/my_compiler/coverage.profdata \ > index.html ``` Error response: ``` error: no such subcommand: `cov` Did you mean `c`? ```
By default, all the debug assertions in the standard library are compiled out, and the only way to get them back is `-Zbuild-std`. Even generic debug assertions can catch code...
Bumps [regex](https://github.com/rust-lang/regex) from 1.4.3 to 1.5.6. Changelog Sourced from regex's changelog. 1.5.6 (2022-05-20) This release includes a few bug fixes, including a bug that produced incorrect matches when a non-greedy...
## The problem Having the `curve25519-dalek` crate as a dependency anywhere in the dependency graph makes it impossible to do any fuzzying since it takes an extremely long time for...
I was following [this tutorial](https://rust-fuzz.github.io/book/cargo-fuzz/coverage.html), but running `cargo +nightly fuzz coverage ` failed with: ``` Merging raw coverage data... Error: Merging raw coverage files failed. Do you have LLVM coverage...