From c1143e2ef6803c0f0d1382a104f643ad9df80aff Mon Sep 17 00:00:00 2001 From: Anh <zenpoems@gmail.com> Date: Tue, 9 Jul 2019 05:25:20 -0700 Subject: [PATCH] Replace wget with curl to fetch latest afl code --- util/setup-afl.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/setup-afl.sh b/util/setup-afl.sh index 597e5ab..6860a9e 100755 --- a/util/setup-afl.sh +++ b/util/setup-afl.sh @@ -16,7 +16,8 @@ if [ -z "$afl_loc" ]; then echo echo Setup AFL echo - wget http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz +# wget http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz + curl -o afl-latest.tgz http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz tar -xzvf afl-latest.tgz && rm afl-latest.tgz if [ -d afl ]; then rm -fr afl -- GitLab