Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix AFL++ #1950

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 27d05f3c216e18163236efa42b630a5b3784d2e9 || \
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 /
2 changes: 1 addition & 1 deletion fuzzers/aflplusplus/runner.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ ENV PATH="$PATH:/out"
ENV AFL_SKIP_CPUFREQ=1
ENV AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1
ENV AFL_TESTCACHE_SIZE=2
RUN apt install -y unzip git gdb joe
RUN apt update && apt install -y unzip git gdb joe
2 changes: 1 addition & 1 deletion fuzzers/aflplusplus_frida/builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN apt-get update && \

# Download afl++
RUN git clone https://github.com/AFLplusplus/AFLplusplus.git /afl && \
cd /afl && git checkout 27d05f3c216e18163236efa42b630a5b3784d2e9
cd /afl && git checkout 227c1a7002dcb1042e4a02ec1f060bf408913b8c

# Build afl++ without Python support as we don't need it.
# Set AFL_NO_X86 to skip flaky tests.
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/aflplusplus_qemu/builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN apt-get update && \

# Download afl++
RUN git clone https://github.com/AFLplusplus/AFLplusplus.git /afl && \
cd /afl && git checkout 27d05f3c216e18163236efa42b630a5b3784d2e9 || true
cd /afl && git checkout 227c1a7002dcb1042e4a02ec1f060bf408913b8c || true

# Build afl++ without Python support as we don't need it.
# Set AFL_NO_X86 to skip flaky tests.
Expand Down
Loading