mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-12 22:12:32 +00:00
33 lines
518 B
Bash
Executable file
33 lines
518 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
#
|
|
# AFL
|
|
#
|
|
|
|
curl http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz | tar xz
|
|
mv afl-* afl
|
|
cd afl
|
|
make -j $(nproc)
|
|
cd qemu_mode
|
|
./build_qemu_support.sh
|
|
cd ../../
|
|
|
|
mkdir -p bin
|
|
cd bin
|
|
ln -sf ../afl/{afl-as,afl-cmin,afl-gcc,afl-gotcpu,afl-plot,afl-qemu-trace,afl-showmap,afl-tmin,afl-whatsup} .
|
|
cd ..
|
|
|
|
cat <<END > bin/afl-fuzz
|
|
#!/bin/bash
|
|
$PWD/afl/afl-fuzz "\$@"
|
|
END
|
|
chmod 755 bin/afl-fuzz
|
|
|
|
#
|
|
# multiafl
|
|
#
|
|
|
|
git clone --depth 1 https://github.com/zardus/multiafl
|
|
cd bin
|
|
ln -s ../multiafl/multiafl
|
|
cd ..
|