Skip to content

Commit

Permalink
update AFL++ commit id on fuzzbench (#1991)
Browse files Browse the repository at this point in the history
the AFL++ commit id is from December, so a 4.10a state, where we are
currently at 4.21a - this needs an update :)
  • Loading branch information
vanhauser-thc authored May 19, 2024
1 parent 6228338 commit 421187b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fuzzers/aflplusplus/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 -b dev https://github.com/AFLplusplus/AFLplusplus /afl && \
cd /afl && \
git checkout 27d05f3c216e18163236efa42b630a5b3784d2e9 || \
git checkout 56d5aa3101945e81519a3fac8783d0d8fad82779 || \
true

# Build without Python support as we don't need it.
Expand Down
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-get update && apt-get upgrade && 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 56d5aa3101945e81519a3fac8783d0d8fad82779

# 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 56d5aa3101945e81519a3fac8783d0d8fad82779 || true

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

0 comments on commit 421187b

Please sign in to comment.