aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/fuzzing-puzzles
diff options
context:
space:
mode:
authorGravatar Max Moroz <dor3s1@gmail.com>2018-06-07 22:23:06 -0700
committerGravatar GitHub <noreply@github.com>2018-06-07 22:23:06 -0700
commitb9b558383a10167b0938f1f278300e8309469695 (patch)
treef8c30a69982b8379d78ba92f0a744440fc710a64 /projects/fuzzing-puzzles
parentfc7dd66326e6aed60bcb6f1d8400edec5b4a7859 (diff)
[fuzzing-puzzles] Enable AFL fuzzing engine instead of libFuzzer + re… (#1495)
* [fuzzing-puzzles] Enable AFL fuzzing engine instead of libFuzzer + rename the target to prevent corpus re-use. * Use ASan instead of UBSan.
Diffstat (limited to 'projects/fuzzing-puzzles')
-rwxr-xr-xprojects/fuzzing-puzzles/build.sh2
-rw-r--r--projects/fuzzing-puzzles/project.yaml4
2 files changed, 3 insertions, 3 deletions
diff --git a/projects/fuzzing-puzzles/build.sh b/projects/fuzzing-puzzles/build.sh
index b3968d44..9eba4b8c 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 1e435247..936465c2 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