Skip to content

Commit

Permalink
update kfuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhauser-thc committed Oct 18, 2024
1 parent c17928c commit 0a84eb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fuzzers/kfuzz/builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN apt-get update && \
# Download afl++.
RUN git clone https://github.com/KFuzzing/KFuzz /afl && \
cd /afl && \
git checkout 40dc2da4027eacd96ecab3536a7fc7feb9ef39b9 || \
git checkout 45f75436a7c81c76fea335ccfa8a06bc2340871a || \
true

# Build without Python support as we don't need it.
Expand Down
2 changes: 2 additions & 0 deletions fuzzers/kfuzz/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,8 @@ def fuzz(input_corpus,
if os.path.exists('./afl++.dict'):
flags += ['-x', './afl++.dict']

flags += ['-k']

# Move the following to skip for upcoming _double tests:
if os.path.exists(cmplog_target_binary) and no_cmplog is False:
flags += ['-c', cmplog_target_binary]
Expand Down

0 comments on commit 0a84eb3

Please sign in to comment.