David Robillard 7765d4ac33
Fix various spelling errors (#2293)
* Fix spelling errors in log messages

* Fix doc comment syntax

* Fix spelling errors in Markdown documentation

* Fix spelling errors in comments
2025-02-10 00:32:42 +01:00
..
2025-02-10 00:32:42 +01:00
2021-01-23 00:02:59 +01:00
2021-01-23 00:02:59 +01:00
2021-01-23 00:02:59 +01:00

Speedtest

This is a simple sample harness for a non-crashing file, to show the raw speed of C, Rust, and Python harnesses.

Compiling...

Make sure you built unicornafl first (../../build_unicorn_support.sh). Build the target using the provided Makefile. This will also run the ./get_offsets.py script, which finds some relevant addresses in the target binary using objdump, and dumps them to different files. Then, follow these individual steps:

Rust

cd rust
cargo build --release
../../../../afl-fuzz -i ../sample_inputs -o out -U -- ./target/release/harness @@

C

cd c
make
../../../../afl-fuzz -i ../sample_inputs -o out -U -- ./harness @@

python

cd python
../../../../afl-fuzz -i ../sample_inputs -o out -U -- python3 ./harness.py @@

Results

TODO: add results here.