Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhauser-thc committed Feb 9, 2024
1 parent 0288db0 commit 7770be7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions fuzzers/aflplusplus/builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ RUN apt-get update && \
# Download afl++.
RUN git clone -b dev https://github.com/AFLplusplus/AFLplusplus /afl && \
cd /afl && \
git checkout ba28f5fbfa32564891c87b4395bdb8a59b3df1f4 || \
git checkout 88e41f01c839ed5c46882222ad7e1f5c3e7d9e20 || \
true

# Build without Python support as we don't need it.
# Set AFL_NO_X86 to skip flaky tests.
RUN cd /afl && \
unset CFLAGS CXXFLAGS && \
export CC=clang AFL_NO_X86=1 && \
PYTHON_INCLUDE=/ make && \
PYTHON_INCLUDE=/ PERFORMANCE=1 make && \
cp utils/aflpp_driver/libAFLDriver.a /
3 changes: 0 additions & 3 deletions fuzzers/aflplusplus/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,9 +265,6 @@ def fuzz(input_corpus,
if os.path.exists(cmplog_target_binary) and no_cmplog is False:
flags += ['-c', cmplog_target_binary]

# Enable the new enhanced determinstic mutation engine
flags += ['-D']

#os.environ['AFL_IGNORE_TIMEOUTS'] = '1'
os.environ['AFL_IGNORE_UNKNOWN_ENVS'] = '1'
os.environ['AFL_FAST_CAL'] = '1'
Expand Down

0 comments on commit 7770be7

Please sign in to comment.