extf33

Results 6 issues of extf33

Undo does not work after variable rename.

help wanted

Why did you filter out 0xc, 0xd, 0xb and derive in `fuzz_target`? ```rs fuzz_target!(|data: &[u8]| { if data.contains(&0x0c) || data.contains(&0x0d) || data.contains(&0x0b) /*|| data.contains (&b'&')*/ { return; } if let...

How to select only `pre.CCC` with "Hello, Rust!" immediately before it, in the code below? ```html Hello, Rust! ... ----------> O ... ... ----------> X ```

C-question

``` $ cargo rustc --bin test -- -C passes='sancov' -C llvm-args='-sanitizer-coverage-level=3' -C llvm-args='-sanitizer-coverage-inline-8bit-counters' -Z sanitizer=address error: failed to run LLVM passes: unknown pass name 'sancov' $ rustc --version rustc 1.72.0-nightly...

Is there an equivalent of `afl-clang-fast` within `libfuzzer-sys`? ``` afl-clang-fast test.c -o test ``` I would like to develop my own fuzzer and utilize `libfuzzer-sys` solely for instrumentation.

Fuzzilli: [`8eec7a7`](https://github.com/googleprojectzero/fuzzilli/commit/8eec7a70fc49ed49f92cec9a29a42cbf17764638) V8: `92a918e10bd36c1045b2f750b56fdab4b4148ae4` I've got ``` [Fuzzer] Testcase "fuzzilli('FUZZILLI_CRASH', 0)" did not crash ``` ``` [Fuzzer] Testcase "fuzzilli('FUZZILLI_CRASH', 1)" did not crash ``` ``` [Fuzzer] Testcase "fuzzilli('FUZZILLI_CRASH', 2)" did...