mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
wrapper script for afl to be able to find afl-qemu-trace
This commit is contained in:
parent
08c02a9a33
commit
30aa0b0dc5
1 changed files with 8 additions and 2 deletions
10
afl/install
10
afl/install
|
@ -12,11 +12,17 @@ cd qemu_mode
|
|||
./build_qemu_support.sh
|
||||
cd ../../
|
||||
|
||||
mkdir bin
|
||||
mkdir -p bin
|
||||
cd bin
|
||||
ln -s ../afl/{afl-as,afl-cmin,afl-fuzz,afl-gcc,afl-gotcpu,afl-plot,afl-qemu-trace,afl-showmap,afl-tmin,afl-whatsup} .
|
||||
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
|
||||
|
||||
#
|
||||
# AFL-utils
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue