From db0d7dd3d7e2d1a283408e53282fc3c916ac3d08 Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Wed, 24 Jan 2024 14:58:19 +0100 Subject: [PATCH] update afl++ --- fuzzers/aflplusplus/builder.Dockerfile | 2 +- fuzzers/aflplusplus_frida/builder.Dockerfile | 2 +- fuzzers/aflplusplus_qemu/builder.Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fuzzers/aflplusplus/builder.Dockerfile b/fuzzers/aflplusplus/builder.Dockerfile index 6f33b4247..71ba98443 100644 --- a/fuzzers/aflplusplus/builder.Dockerfile +++ b/fuzzers/aflplusplus/builder.Dockerfile @@ -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 227c1a7002dcb1042e4a02ec1f060bf408913b8c || \ true # Build without Python support as we don't need it. diff --git a/fuzzers/aflplusplus_frida/builder.Dockerfile b/fuzzers/aflplusplus_frida/builder.Dockerfile index 24dc2101f..58ebca54e 100644 --- a/fuzzers/aflplusplus_frida/builder.Dockerfile +++ b/fuzzers/aflplusplus_frida/builder.Dockerfile @@ -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. diff --git a/fuzzers/aflplusplus_qemu/builder.Dockerfile b/fuzzers/aflplusplus_qemu/builder.Dockerfile index ad8f2e1d9..8372f75ba 100644 --- a/fuzzers/aflplusplus_qemu/builder.Dockerfile +++ b/fuzzers/aflplusplus_qemu/builder.Dockerfile @@ -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.