autarkie icon indicating copy to clipboard operation
autarkie copied to clipboard

Autarkie - Instant Grammar Fuzzing Using Rust Macros

Results 5 autarkie issues
Sort by recently updated
recently updated
newest added

I have an existing arbitrary, cargo-fuzz harness (not public unfortuantely) that I tried to port to autarkie following the sbpf tutorial. ``` // Cargo.toml libfuzzer-sys = { version = "=0.9.4",...

closes https://github.com/R9295/autarkie/issues/12

``` use serde::{Deserialize, Serialize}; #[derive(Debug, Clone, Serialize, Deserialize, autarkie::Grammar)] pub enum XYZ { A { val: u64, }, } ``` ``` error[E0308]: mismatched types --> fuzz_input/src/lib.rs:3:48 | 3 | #[derive(Debug,...

Changes: - make stages public so they can be used independently of the main fuzzer - return Some(None) instead of just None when generating an Option since returning None by...

Autarkie should do be able to implement constraints similar to [Fandango](https://github.com/fandango-fuzzer/fandango). A user can define a constraint for a ``FuzzData`` type, for example: The ``Add`` expression must guarantee that if...