From b9b558383a10167b0938f1f278300e8309469695 Mon Sep 17 00:00:00 2001 From: Max Moroz Date: Thu, 7 Jun 2018 22:23:06 -0700 Subject: [PATCH] =?UTF-8?q?[fuzzing-puzzles]=20Enable=20AFL=20fuzzing=20en?= =?UTF-8?q?gine=20instead=20of=20libFuzzer=20+=20re=E2=80=A6=20(#1495)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [fuzzing-puzzles] Enable AFL fuzzing engine instead of libFuzzer + rename the target to prevent corpus re-use. * Use ASan instead of UBSan. --- projects/fuzzing-puzzles/build.sh | 2 +- projects/fuzzing-puzzles/project.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/fuzzing-puzzles/build.sh b/projects/fuzzing-puzzles/build.sh index b3968d44c2a..9eba4b8c13b 100755 --- a/projects/fuzzing-puzzles/build.sh +++ b/projects/fuzzing-puzzles/build.sh @@ -16,5 +16,5 @@ ################################################################################ $CXX $CXXFLAGS $SRC/fuzzing-puzzles/MultipleConstraintsOnSmallInputTest.cpp \ - -o $OUT/multiple_constraints_on_small_input_fuzzer \ + -o $OUT/multiple_constraints_on_small_input_afl_fuzzer \ -lFuzzingEngine diff --git a/projects/fuzzing-puzzles/project.yaml b/projects/fuzzing-puzzles/project.yaml index 1e43524749c..936465c207f 100644 --- a/projects/fuzzing-puzzles/project.yaml +++ b/projects/fuzzing-puzzles/project.yaml @@ -7,7 +7,7 @@ auto_ccs: - "mmoroz@google.com" sanitizers: - - undefined + - address fuzzing_engines: - - libfuzzer + - afl