AFL Configuration#
run_time#
- Number of seconds this fuzzing session will last.
(default: 0 [no limit])
iterations#
- Number of fuzzing iterations.
(default: 0 [no limit])
cargo_target_dir#
- Target compilation directory, to not clash with cargo build's default target directory.
(default: "" ["trident-tests/fuzz_tests/fuzzing/afl/afl_target"])
afl_workspace_in#
- AFL working input directory.
(default: "" ["trident-tests/fuzz_tests/fuzzing/afl/afl_workspace/in"])
afl_workspace_out#
- AFL working output directory.
(default: "" ["trident-tests/fuzz_tests/fuzzing/afl/afl_workspace/out"])
seeds#
- Predefined inputs to the AFL. You can specify multiple input seeds.
Seed Generation Priority
bytes_count has precedence before seed, in that case if both are specified. Seed is generated as random array of bytes_count bytes.
-
file_name- Filename under which the test input is generated, the location of file is
afl_workspace_indirectory.
(default: "" ["trident-seed"]) - Filename under which the test input is generated, the location of file is
-
seed- String used as seed.
(default: "" ["trident"]) -
override_file- If the file already exists at specific location, select if override.
(default: false) -
bytes_count- Number of randomly generated bytes.