fuzzcheck-rs

Modular, structure-aware, and feedback-driven fuzzing engine for Rust functions (by loiclec)

Fuzzcheck-rs Alternatives

Similar projects and alternatives to fuzzcheck-rs

  1. tauri

    Build smaller, faster, and more secure desktop and mobile applications with a web frontend.

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. VisualFSharp

    The F# compiler, F# core library, F# language service, and F# tooling integration for Visual Studio

  4. sanitizers

    AddressSanitizer, ThreadSanitizer, MemorySanitizer

  5. redbpf

    Discontinued Rust library for building and running BPF/eBPF modules

  6. talent-plan

    open source training courses about distributed database and distributed systems

  7. structopt

    Parse command line arguments by defining a struct.

  8. hypothesis

    Hypothesis is a powerful, flexible, and easy to use library for property-based testing.

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. wg-allocators

    Home of the Allocators working group: Paving a path for a standard set of allocator traits to be used in collections!

  11. rs_pbrt

    Rust crate to implement a counterpart to the PBRT book's (3rd edition) C++ code. See also https://www.rs-pbrt.org/about ...

  12. autocxx

    Tool for safe ergonomic Rust/C++ interop driven from existing C++ headers

  13. coyote

    Coyote is a library and tool for testing concurrent C# code and deterministically reproducing bugs.

  14. diem

    15 fuzzcheck-rs VS diem

    Diem’s mission is to build a trusted and innovative financial network that empowers people and businesses around the world.

  15. trophy-case

    🏆 Collection of bugs uncovered by fuzzing Rust code

  16. sonyflake-rs

    🃏 A distributed unique ID generator inspired by Twitter's Snowflake.

  17. uivonim

    6 fuzzcheck-rs VS uivonim

    Fork of the Veonim Neovim GUI

  18. fsharp-hedgehog

    Release with confidence, state-of-the-art property testing for .NET.

  19. CsCheck

    Random testing library for C#

  20. snm

    🤏 Smol and simple node version manager written in rust 🦀

  21. openapi-fuzzer

    Black-box fuzzer that fuzzes APIs based on OpenAPI specification. Find bugs for free!

  22. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better fuzzcheck-rs alternative or higher similarity.

fuzzcheck-rs discussion

Log in or Post with

fuzzcheck-rs reviews and mentions

Posts with mentions or reviews of fuzzcheck-rs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-07-04.
  • Fuzzcheck-rs: Structure-aware, in-process, coverage-guided fuzzing engine for Ru
    1 project | news.ycombinator.com | 9 Sep 2024
  • The sad state of property-based testing libraries
    21 projects | news.ycombinator.com | 4 Jul 2024
    Agreed. A while back I played around with fuzzcheck [1], which let's you write coverage-guided, structure-aware property tests, but the generation is smarter than just slamming a fuzzer's `&[u8]` input into `Arbitrary`. It also supports shrinking, which is nice. Don't know that I would recommend it though. It seemed difficult to write your own `Mutator`s. It also looks somewhat unmaintained nowadays, but I think the direction is worth exploring.

    [1]: https://github.com/loiclec/fuzzcheck-rs/

  • Fuzzcheck (a structure-aware Rust fuzzer)
    4 projects | /r/rust | 26 Feb 2022
    Fuzzcheck is a structure-aware fuzzer for rust. "Fuzzing" means feeding large amounts of data into a program and checking for crashes (Fuzzcheck also checks to make sure that all the properties your program should uphold – e.g. a sorting algorithm applied to a list of n items should always return a list of n items – are upheld). Fuzzcheck is an "evolutionary" fuzzer – this means that it generates a set of random inputs, sees what percentage of the program is executed for each input, and keeps inputs which have high levels of percentage of program executed. It then "mutates" these inputs – whereas fuzzers such as AFL/Hongfuzz/etc mutate raw bytes in place (e.g. they swap bytes at different positions, or insert a random byte at a given position to generate inputs similar to the chosen "high coverage" inputs), Fuzzcheck works directly on the Rust types (so it might swap the order of two items in a vec, or randomly insert a new item). It's a really powerful tool for finding lots of bugs.
  • fuzzcheck 0.9 release - run coverage-guided fuzz tests alongside your regular unit tests + code coverage visualiser + new online guide and improved documentation
    5 projects | /r/rust | 19 Nov 2021
    If you want help with Win support (issues/8) maybe post it here to get it added to TWIR.
  • What's everyone working on this week (43/2021)?
    6 projects | /r/rust | 25 Oct 2021
    I am working on a code coverage viewer for my fuzzer (fuzzcheck). I described what I've done so far in this issue and I am hoping to release the first version within two weeks.
  • What's everyone working on this week (31/2021)?
    6 projects | /r/rust | 2 Aug 2021
    The implications for my fuzzer, fuzzcheck, are huge! Compiling fuzz tests is a lot easier. There should be no more need to create a separate fuzz folder, fuzz tests can be regular #[test] functions, private implementation details can be fuzz-tested as well, rust-analyser works as expected, documentation can be easily generated, etc. I can also attach a human-readable coverage report to every test case :)
  • What's everyone working on this week (30/2021)?
    3 projects | /r/rust | 26 Jul 2021
    Since I graduated, I have had a lot more time to work on fuzzcheck. I am trying to flesh it out, test it, and document it for a new release. It has always felt a bit rushed/experimental and now I am hoping to make it into something solid. I have also played with an egui interface for it, to visualise the tested code coverage, understand how the fuzzer’s decisions are made, and also to interactively tweak the fuzzer’s behaviour. It's a lot of work but it's slowly all coming together! :)
  • What's your favourite under-rated Rust crate and why?
    25 projects | /r/rust | 7 Jun 2021
    fuzzcheck-rs is really cool. It combines property-testing with fuzzing, getting the nice, structured nature of the former, and the coverage-driven search of the latter, but it works by mutating the structure directly instead of going through a bit string. So if you have a binary tree, going from A(B, C) to A(C, B) can be a single mutation away if that makes sense in your use case, instead of being arbitrarily far away in the bitstring approach.
  • Fuzzcheck: Structure and coverage guided fuzzing for Rust
    1 project | news.ycombinator.com | 13 Jan 2021
  • A note from our sponsor - SaaSHub
    www.saashub.com | 23 Mar 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic fuzzcheck-rs repo stats
10
441
4.2
27 days ago

Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai

Did you know that Rust is
the 5th most popular programming language
based on number of references?